| 994 | * exec-failure fallback below, so this stays compiled everywhere. */ |
| 995 | static void cbm_posix_reset_child_signals(void) { |
| 996 | struct sigaction action = {0}; |
| 997 | action.sa_handler = SIG_DFL; |
| 998 | (void)sigemptyset(&action.sa_mask); |
| 999 | for (int sig = 1; sig < NSIG; sig++) { |
no outgoing calls
no test coverage detected