Unix: Trigger crash log handler on receiving SIGQUIT

This commit is contained in:
Jonathan G Rennison
2023-04-02 01:07:54 +01:00
parent b9a4cd57f8
commit cfb0d366f3

View File

@@ -731,7 +731,7 @@ public:
}; };
/** The signals we want our crash handler to handle. */ /** The signals we want our crash handler to handle. */
static const int _signals_to_handle[] = { SIGSEGV, SIGABRT, SIGFPE, SIGBUS, SIGILL }; static const int _signals_to_handle[] = { SIGSEGV, SIGABRT, SIGFPE, SIGBUS, SIGILL, SIGQUIT };
/** /**
* Entry point for the crash handler. * Entry point for the crash handler.