mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-15 17:00:26 +00:00
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
SIGCPULIM, if they are defined.
This commit is contained in:
parent
5bfac5a98e
commit
99e372cd35
21
src/emacs.c
21
src/emacs.c
@ -664,6 +664,27 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
|
||||
signal (SIGQUIT, fatal_error_signal);
|
||||
signal (SIGILL, fatal_error_signal);
|
||||
signal (SIGTRAP, fatal_error_signal);
|
||||
#ifdef SIGABRT
|
||||
signal (SIGABRT, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGHWE
|
||||
signal (SIGHWE, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGPRE
|
||||
signal (SIGPRE, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGORE
|
||||
signal (SIGORE, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGUME
|
||||
signal (SIGUME, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGDLK
|
||||
signal (SIGDLK, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGCPULIM
|
||||
signal (SIGCPULIM, fatal_error_signal);
|
||||
#endif
|
||||
#ifdef SIGIOT
|
||||
/* This is missing on some systems - OS/2, for example. */
|
||||
signal (SIGIOT, fatal_error_signal);
|
||||
|
Loading…
Reference in New Issue
Block a user