- Rich Felker writes:

SIGIOT is not defined in any standard i can find and it seems to be
useless (alias for SIGABRT) on linux. i put it in #ifdef but it's
probably best just to remove it and cut down the size a bit.
1_1_stable
Bernhard Reutner-Fischer 2006-05-19 12:40:26 +00:00
parent 0c4c053c9d
commit 6af4cd1a87
1 changed files with 2 additions and 0 deletions

View File

@ -2189,7 +2189,9 @@ static void core_sig(int sig)
signal(SIGQUIT, core_sig);
signal(SIGILL, core_sig);
signal(SIGTRAP, core_sig);
#ifdef SIGIOT
signal(SIGIOT, core_sig);
#endif
signal(SIGABRT, core_sig);
signal(SIGFPE, core_sig);
signal(SIGBUS, core_sig);