From cfb0d366f34869932e22aa2b5bfd55ef5876c85f Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sun, 2 Apr 2023 01:07:54 +0100 Subject: [PATCH] Unix: Trigger crash log handler on receiving SIGQUIT --- src/os/unix/crashlog_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/unix/crashlog_unix.cpp b/src/os/unix/crashlog_unix.cpp index 3c2b056618..7f804cd5eb 100644 --- a/src/os/unix/crashlog_unix.cpp +++ b/src/os/unix/crashlog_unix.cpp @@ -731,7 +731,7 @@ public: }; /** 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.