| 114 | static sigjmp_buf g_jmp; |
| 115 | static volatile sig_atomic_t g_inCall = 0; |
| 116 | static void CrashHandler(int sig) { if (g_inCall) siglongjmp(g_jmp, sig); raise(sig); } |
| 117 | class CallGuard { |
| 118 | public: |
| 119 | CallGuard() { |
nothing calls this directly
no outgoing calls
no test coverage detected