sigfillset - initialise and fill a signal set
#include <signal.h> int sigfillset(sigset_t *set);
The sigfillset() function initialises the signal set pointed to by set, such that all signals defined in this document are included.
Upon successful completion, sigfillset() returns 0. Otherwise, it returns -1 and sets errno to indicate the error.
No errors are defined.
None.
None.
None.
sigaction(), sigaddset(), sigdelset(), sigemptyset(), sigismember(), sigpending(), sigprocmask(), sigsuspend(), <signal.h>.
Derived from the POSIX.1-1988 standard.