GLProgramming.com

home :: about :: development guides :: irc :: forums :: search :: paste :: links :: contribute :: code dump

-> Click here to learn how to get live help <-


Manpage of PSIGNAL

PSIGNAL

Index
 

NAME

psignal - print signal message  

SYNOPSIS

#include <signal.h>

void psignal(int sig, const char *s);

extern const char *const sys_siglist[];
 

DESCRIPTION

The fBpsignal()fP function displays a message on fIstderrfP consisting of the string fIsfP, a colon, a space, and a string describing the signal number fIsigfP. If fIsigfP is invalid, the message displayed will indicate an unknown signal.

The array fIsys_siglistfP holds the signal description strings indexed by signal number.  

RETURN VALUE

The fBpsignal()fP function returns no value.  

CONFORMING TO

BSD 4.3  

SEE ALSO

perror(3), strsignal(3)


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
CONFORMING TO
SEE ALSO