| 100 | // Restore the default disposition and re-raise so the process dies with |
| 101 | // the original signal (and dumps core where enabled) instead of wedging. |
| 102 | struct sigaction dfl; |
| 103 | memset(&dfl, 0, sizeof(dfl)); |
| 104 | dfl.sa_handler = SIG_DFL; |
| 105 | sigemptyset(&dfl.sa_mask); |
no outgoing calls
no test coverage detected