Set and Oldset in sigprocmask()
The idea is that you provide a mask in set, effectively a list of signals. The how argument says what you should do with the mask in set. You can either use SIG_BLOCK to block the signals in the set list, or SIG_UNBLOCK to unblock them. Neither of these changes the signals that aren’t set … Read more