Adds the signals in mask to the current set of signals being blocked from delivery.
#include <signal.h> int sigblock (int mask);
sigblock(1 << (SIGBUS - 1));
You can express signals in mnemonics (such as SIGBUS for a protection violation) or numbers as defined in the <signal.h> header file, and you can express combinations of signals by using the bitwise OR operator (|).
x | Indicates the previous set of masked signals. |