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_4_stable
parent
d9ed35c8b9
commit
4009ed91f7
|
@ -2180,7 +2180,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