13 const int TRASH
= 123;
15 // TRASH variable, that represents HOW parameter, should be ignored in this case
16 // Taken from: http://man7.org/linux/man-pages/man2/sigprocmask.2.html :
17 // If set is NULL, then the signal mask is unchanged (i.e., HOW is
18 // ignored), but the current value of the signal mask is nevertheless
19 // returned in oldset (if it is not NULL).
20 if (sigprocmask(TRASH
, NULL
, &oldset
) == 0) {