# HG changeset patch # User Jim Blandy # Date 730477080 0 # Node ID b07c27b4dca75ab84d8c1b4fd7362a951d5f824b # Parent 687179cefbe076a44bfa4546da20f895166f5150 * emacs.c (fatal_error_signal): Unblock the signal before we try to deliver it to ourselves. #include "syssignal.h" to get the right definitions. diff -r 687179cefbe0 -r b07c27b4dca7 src/emacs.c --- a/src/emacs.c Tue Feb 23 14:17:11 1993 +0000 +++ b/src/emacs.c Tue Feb 23 14:18:00 1993 +0000 @@ -50,6 +50,7 @@ #include "intervals.h" #include "systty.h" +#include "syssignal.h" #ifndef O_RDWR #define O_RDWR 2 @@ -125,17 +126,21 @@ signal (sig, SIG_DFL); /* If fatal error occurs in code below, avoid infinite recursion. */ - if (fatal_error_in_progress) - kill (getpid (), fatal_error_code); + if (! fatal_error_in_progress) + { + fatal_error_in_progress = 1; - fatal_error_in_progress = 1; - - shut_down_emacs (sig); + shut_down_emacs (sig); + } #ifdef VMS LIB$STOP (SS$_ABORT); #else - /* Signal the same code; this time it will really be fatal. */ + /* Signal the same code; this time it will really be fatal. + Remember that since we're in a signal handler, the signal we're + going to send is probably blocked, so we have to unblock it if we + want to really receive it. */ + sigblock(SIGEMPTYMASK); kill (getpid (), fatal_error_code); #endif /* not VMS */ }