| 256 | // We want to ignore the signal so that if FEXServer starts in daemon mode, it |
| 257 | // doesn't leave a zombie process around waiting for something to get the result. |
| 258 | struct sigaction action {}; |
| 259 | action.sa_handler = SIG_IGN; |
| 260 | sigaction(SIGCHLD, &action, &action); |
| 261 |
no outgoing calls
no test coverage detected