| 4320 | __attribute__((noreturn)) |
| 4321 | # endif |
| 4322 | static void |
| 4323 | sig_handler(int signo, siginfo_t* info, void* _ctx) |
| 4324 | { |
| 4325 | handleSignal(signo, info, _ctx); |
| 4326 | |
| 4327 | // try to forward the signal. |
| 4328 | raise(info->si_signo); |
| 4329 | |
| 4330 | // terminate the process immediately. |
| 4331 | puts("watf? exit"); |
| 4332 | _exit(EXIT_FAILURE); |
| 4333 | } |
| 4334 | }; |
| 4335 | |
| 4336 | #endif // BACKWARD_SYSTEM_LINUX || BACKWARD_SYSTEM_DARWIN |
nothing calls this directly
no outgoing calls
no test coverage detected