fix for signals-ignored-by-default for aix
This commit is contained in:
parent
99b82763bb
commit
2fe3ec94a7
|
@ -14,16 +14,16 @@
|
||||||
(iot 5) ; IOT instruction
|
(iot 5) ; IOT instruction
|
||||||
(abrt 6) ; used by abort, replace SIGIOT in the future
|
(abrt 6) ; used by abort, replace SIGIOT in the future
|
||||||
(fpe 8) ; floating point exception
|
(fpe 8) ; floating point exception
|
||||||
(igemt 7) ; EMT intruction
|
(emt 7) ; EMT intruction
|
||||||
(igfpe 8) ; floating point exception
|
(fpe 8) ; floating point exception
|
||||||
(kill 9) ; kill (cannot be caught or ignored)
|
(kill 9) ; kill (cannot be caught or ignored)
|
||||||
(bus 10) ; bus error (specification exception)
|
(bus 10) ; bus error (specification exception)
|
||||||
(segv 11) ; segmentation violation
|
(segv 11) ; segmentation violation
|
||||||
(igsys 12) ; bad argument to system call
|
(sys 12) ; bad argument to system call
|
||||||
(pipe 13) ; write on a pipe with no one to read it
|
(pipe 13) ; write on a pipe with no one to read it
|
||||||
(alrm 14) ; alarm clock
|
(alrm 14) ; alarm clock
|
||||||
(term 15) ; software termination signal from kill
|
(term 15) ; software termination signal from kill
|
||||||
(igurg 16) ; urgent contition on I/O channel
|
(urg 16) ; urgent contition on I/O channel
|
||||||
(stop 17) ; sendable stop signal not from tty
|
(stop 17) ; sendable stop signal not from tty
|
||||||
(tstp 18) ; stop signal from tty
|
(tstp 18) ; stop signal from tty
|
||||||
(cont 19) ; continue a stopped process
|
(cont 19) ; continue a stopped process
|
||||||
|
@ -47,5 +47,7 @@
|
||||||
(virt 37) ; AIX virtual time alarm
|
(virt 37) ; AIX virtual time alarm
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(define signals-ignored-by-default
|
||||||
|
(list signal/chld signal/cont ; These are Posix.
|
||||||
|
signal/urg signal/io signal/winch signal/pwr ; These are AIX
|
||||||
|
signal/danger))
|
||||||
|
|
Loading…
Reference in New Issue