mirror of https://github.com/OpenTTD/OpenTTD
(svn r18350) -Codechange: catch SIGILL under unix-like systems as well
parent
4b4c1ffc17
commit
9ecfcdff78
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue