Get the signal mask for a pselect() or ppoll() system call.
| 130 | |
| 131 | // Get the signal mask for a pselect() or ppoll() system call. |
| 132 | const sigset_t *SyscallThreadPfuncs::Sigmask() const { |
| 133 | return GetMask(false); |
| 134 | } |
| 135 | |
| 136 | /* |
| 137 | * Blocks most (all==false) or all (all==true) signals. Called from |