| 887 | * exec-failure fallback below, so this stays compiled everywhere. */ |
| 888 | static void cbm_posix_reset_child_signals(void) { |
| 889 | struct sigaction action = {0}; |
| 890 | action.sa_handler = SIG_DFL; |
| 891 | (void)sigemptyset(&action.sa_mask); |
| 892 | for (int sig = 1; sig < NSIG; sig++) { |
no outgoing calls
no test coverage detected