| 1030 | * exec-failure fallback below, so this stays compiled everywhere. */ |
| 1031 | static void cbm_posix_reset_child_signals(void) { |
| 1032 | struct sigaction action = {0}; |
| 1033 | action.sa_handler = SIG_DFL; |
| 1034 | (void)sigemptyset(&action.sa_mask); |
| 1035 | for (int sig = 1; sig < NSIG; sig++) { |
no outgoing calls
no test coverage detected