| 87 | static sigjmp_buf g_jmp; |
| 88 | static volatile sig_atomic_t g_inCall = 0; |
| 89 | static void CrashHandler(int sig) { |
| 90 | if (g_inCall) siglongjmp(g_jmp, sig); |
| 91 | raise(sig); |
| 92 | } |
| 93 | class CallGuard { |
| 94 | public: |
| 95 | CallGuard() { |
nothing calls this directly
no outgoing calls
no test coverage detected