These functions manipulate sigset_t data types, representing the set of signals supported by the implementation.
The sigemptyset() function initializes the set pointed to by set to exclude all signals defined by the system.
The sigfillset() function initializes the set pointed to by set to include all signals defined by the system.
The sigaddset() function adds the individual signal specified by the value of signo to the set pointed to by set.
The sigdelset() function deletes the individual signal specified by the value of signo from the set pointed to by set.
The sigismember() function checks whether the signal specified by the value of signo is a member of the set pointed to by set.
Any object of type sigset_t must be initialized by applying either sigemptyset() or sigfillset() before applying any other operation.
|