* Blocks most (all==false) or all (all==true) signals. Called from * the {Push,Pop}Defer methods of SyscallThreadAny. */
| 138 | * the {Push,Pop}Defer methods of SyscallThreadAny. |
| 139 | */ |
| 140 | void SyscallThreadAny::BlockSignals(bool all) { |
| 141 | PthreadSetSigmask(GetMask(all)); |
| 142 | } |
| 143 | |
| 144 | /* |
| 145 | * Runs the knock thread: keeps kicking the normal thread until |
nothing calls this directly
no test coverage detected