| 1008 | * exec-failure fallback below, so this stays compiled everywhere. */ |
| 1009 | static void cbm_posix_reset_child_signals(void) { |
| 1010 | struct sigaction action = {0}; |
| 1011 | action.sa_handler = SIG_DFL; |
| 1012 | (void)sigemptyset(&action.sa_mask); |
| 1013 | for (int sig = 1; sig < NSIG; sig++) { |
no outgoing calls
no test coverage detected