1
0
Fork 0

(svn r18350) -Codechange: catch SIGILL under unix-like systems as well

release/1.0
smatz 2009-11-29 22:18:04 +00:00
parent 4b4c1ffc17
commit 9ecfcdff78
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,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 }; static const int _signals_to_handle[] = { SIGSEGV, SIGABRT, SIGFPE, SIGBUS, SIGILL };
/** /**
* Entry point for the crash handler. * Entry point for the crash handler.