| 267 | static volatile sig_atomic_t g_inScan = 0; |
| 268 | |
| 269 | static void ScanCrashHandler(int sig) |
| 270 | { |
| 271 | if (g_inScan) |
| 272 | siglongjmp(g_crashJmpBuf, 1); |
| 273 | // Not our crash -- SA_RESETHAND already restored default, just re-raise |
| 274 | raise(sig); |
| 275 | } |
| 276 | |
| 277 | // ── Post-init crash handler: dumps backtrace to log ───────────────────── |
| 278 | static volatile sig_atomic_t g_inCrashHandler = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected