| 289 | if (terminate) { |
| 290 | // now let things proceed, shutdown and hopefully dump core for post-mortem analysis |
| 291 | struct sigaction act; |
| 292 | memset(&act, 0, sizeof(act)); |
| 293 | act.sa_handler=SIG_DFL; |
| 294 | sigaction(signo, &act, nullptr); |
no outgoing calls
no test coverage detected