Lines Matching refs:signal
6 For historical reasons; programs expect signal to be declared
7 in <sys/signal.h>. The signal function is documented in <sys/signal.h>.
9 The signal function is declared in the C Standard as:<BR>
10 void (*signal(int sig, void (*func)(int)))(int);
27 #include <sys/signal.h>
33 This, possibly machine specific, type is defined in <machine/signal.h>.
39 return value of, the signal function, and whose values compare unequal to
49 type int and distinct values that are the signal numbers, each
53 #define SIGINT __SigInt ///< receipt of an interactive attention signal
68 #define SIG_LAST __Sig_Last ///< One more than the largest signal number
73 /** Send a signal.
75 The raise function carries out the actions described for signal,
76 in <sys/signal.h>, for the signal sig. If a signal handler is called, the
77 raise function does not return until after the signal handler does.