mirror of https://github.com/mirror/busybox.git
- 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
parent
0c4c053c9d
commit
6af4cd1a87
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue