changeset 13824:6d4b1112d84e draft

(svn r18350) -Codechange: catch SIGILL under unix-like systems as well
author smatz <smatz@openttd.org>
date Sun, 29 Nov 2009 22:18:04 +0000
parents 4e3b8ebbed40
children 254768f95618
files src/os/unix/crashlog_unix.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/os/unix/crashlog_unix.cpp
+++ b/src/os/unix/crashlog_unix.cpp
@@ -136,7 +136,7 @@
 };
 
 /** 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.