SIGFILLSET(3) Library Functions Manual SIGFILLSET(3)
NAME
sigfillset —
initialise and fill a signal set
SYNOPSIS
#include <signal.h> int sigfillset(sigset_t *set);
DESCRIPTION
The sigfillset() function initialises the signal set pointed to by set , such that all signals defined in this document are included.
RETURN VALUE
Upon successful completion, sigfillset() returns 0. Otherwise, it returns -1 and sets errno to indicate the error.
ERRORS
No errors are defined.
EXAMPLES
None.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
sigaction(3) , sigaddset(3) , sigdelset(3) , sigemptyset(3) , sigismember(3) , sigpending(3) , sigprocmask(3) , sigsuspend(3) , <signal.h> .
DERIVATION
Derived from the POSIX.1-1988 standard.
February 1997 posix.fail