From 9ecfcdff78d68da1ccfc97236a64079d1c4c0eac Mon Sep 17 00:00:00 2001 From: smatz Date: Sun, 29 Nov 2009 22:18:04 +0000 Subject: (svn r18350) -Codechange: catch SIGILL under unix-like systems as well --- src/os/unix/crashlog_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/unix/crashlog_unix.cpp') diff --git a/src/os/unix/crashlog_unix.cpp b/src/os/unix/crashlog_unix.cpp index ed7f2127f..c8314f5c8 100644 --- a/src/os/unix/crashlog_unix.cpp +++ b/src/os/unix/crashlog_unix.cpp @@ -136,7 +136,7 @@ public: }; /** The signals we want our crash handler to handle. */ -static const int _signals_to_handle[] = { SIGSEGV, SIGABRT, SIGFPE, SIGBUS }; +static const int _signals_to_handle[] = { SIGSEGV, SIGABRT, SIGFPE, SIGBUS, SIGILL }; /** * Entry point for the crash handler. -- cgit v1.2.3-54-g00ecf