| 50 | .initialized = false, .allmask = {}, .mostmask = {}}; |
| 51 | |
| 52 | static inline const sigset_t *GetMask(bool all) { |
| 53 | assert(ProcessMasks.initialized); |
| 54 | return all ? &ProcessMasks.allmask : &ProcessMasks.mostmask; |
| 55 | } |
| 56 | |
| 57 | /* |
| 58 | * When we receive an exit signal, that will interrupt any |
no outgoing calls
no test coverage detected