| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) | 
|  | This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. | 
Initialize a set to contain no signals
#include <signal.h> int sigemptyset( sigset_t *set );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The sigemptyset() function initializes set to contain no signals.
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
void print( sigset_t set, int signo )
  {
    printf( "Set %8.8lx. Signal %d is ", set, signo );
    if( sigismember( &set, signo ) )
      printf( "a member.\n" );
    else
      printf( "not a member.\n" );
  }
int main( void )
  {
    sigset_t set;
    sigemptyset( &set );
    print( set, SIGINT );
    sigfillset( &set );
    print( set, SIGINT );
    sigdelset( &set, SIGINT );
    print( set, SIGINT );
    sigaddset( &set, SIGINT );
    print( set, SIGINT );
    return EXIT_SUCCESS;
  }
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | Yes | 
| Signal handler | Yes | 
| Thread | Yes | 
kill(), raise(), sigaction(), sigaddset(), sigdelset(), sigfillset(), sigismember(), signal(), sigpending(), sigprocmask()
| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) |