Print this page
5863 psiginfo arguments should be const
Reviewed by: Andy Stormont <astormont@racktopsystems.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>

*** 9,19 **** #include <siginfo.h> void psignal(int sig, const char *s); ! void psiginfo(siginfo_t *pinfo, char *s); DESCRIPTION The psignal() and psiginfo() functions produce messages on the standard error output describing a signal. The sig argument is a signal that --- 9,19 ---- #include <siginfo.h> void psignal(int sig, const char *s); ! void psiginfo(const siginfo_t *pinfo, const char *s); DESCRIPTION The psignal() and psiginfo() functions produce messages on the standard error output describing a signal. The sig argument is a signal that