See if a given signal is in a given set
#include <signal.h> int sigismember( const sigset_t *set, int signo );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The sigismember() function tests if signo is in the set pointed to by set.
See sigemptyset().
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |
kill(), pthread_sigmask(), raise(), sigaction(), sigaddset(), sigdelset(), sigemptyset(), sigfillset(), signal(), sigpending(), sigprocmask()