diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-19 22:01:35 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-19 22:01:35 +0000 |
commit | 00eaaa321cbd33275bd2cece992824999cf7a5cf (patch) | |
tree | 13e418975952ad2401cf6fb78187b7c61ddaa1aa /src/emacs.c | |
parent | 0674a1f9461cd79ea06e8b2e9b1e7cd6401f8fc5 (diff) | |
download | emacs-00eaaa321cbd33275bd2cece992824999cf7a5cf.tar.gz |
Some changes from Michael K. Johnson for Linux.
* sysdep.c (sys_siglist): Don't define this if HAVE_SYS_SIGLIST is
#defined. That lets the system provide it, if it has it.
* syssignal.h (sigmask): Only define this if <signal.h> hasn't
given us a definition already.
* syssignal.h (sys_sigpause): Fix argument in prototype.
* sysdep.c (init_signals): The masks are called empty_mask and
full_mask, not signal_empty_mask and signal_full_mask.
(signal_handler_t): Moved ....
* syssignal.h: ... to here.
* systty.h (EMACS_SET_TTY_PGRP): Call tcsetpgrp with the correct
arguments.
* emacs.c (main): Don't try to establish signal handlers for
SIGBUS and SIGSYS unless they're actually #defined.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index 68d0ce31696..dac22ca1c23 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -407,9 +407,13 @@ main (argc, argv, envp) signal (SIGEMT, fatal_error_signal); #endif signal (SIGFPE, fatal_error_signal); +#ifdef SIGBUS signal (SIGBUS, fatal_error_signal); +#endif signal (SIGSEGV, fatal_error_signal); +#ifdef SIGSYS signal (SIGSYS, fatal_error_signal); +#endif signal (SIGTERM, fatal_error_signal); #ifdef SIGXCPU signal (SIGXCPU, fatal_error_signal); |