1995-10-13 23:34:21 -04:00
|
|
|
;;; Signal constant definitions for AIX
|
|
|
|
;;; Copyright (c) 1994 by Olin Shivers.
|
|
|
|
;;; Copyright (c) 1994 by Brian D. Carlstrom.
|
|
|
|
;;; AIX version by Chipsy Sperber
|
|
|
|
|
|
|
|
;;POSIX only defined here.
|
|
|
|
|
1996-09-11 21:43:53 -04:00
|
|
|
(define-enum-constants signal
|
1995-10-13 23:34:21 -04:00
|
|
|
;; POSIX
|
|
|
|
(hup 1) ; hangup
|
|
|
|
(int 2) ; interrupt
|
|
|
|
(quit 3) ; quit
|
|
|
|
(ill 4) ; illegal instruction (not reset when caught)
|
|
|
|
(iot 5) ; IOT instruction
|
|
|
|
(abrt 6) ; used by abort, replace SIGIOT in the future
|
|
|
|
(fpe 8) ; floating point exception
|
1996-11-03 20:30:20 -05:00
|
|
|
(emt 7) ; EMT intruction
|
|
|
|
(fpe 8) ; floating point exception
|
1995-10-13 23:34:21 -04:00
|
|
|
(kill 9) ; kill (cannot be caught or ignored)
|
|
|
|
(bus 10) ; bus error (specification exception)
|
|
|
|
(segv 11) ; segmentation violation
|
1996-11-03 20:30:20 -05:00
|
|
|
(sys 12) ; bad argument to system call
|
1995-10-13 23:34:21 -04:00
|
|
|
(pipe 13) ; write on a pipe with no one to read it
|
|
|
|
(alrm 14) ; alarm clock
|
|
|
|
(term 15) ; software termination signal from kill
|
1996-11-03 20:30:20 -05:00
|
|
|
(urg 16) ; urgent contition on I/O channel
|
1995-10-13 23:34:21 -04:00
|
|
|
(stop 17) ; sendable stop signal not from tty
|
|
|
|
(tstp 18) ; stop signal from tty
|
|
|
|
(cont 19) ; continue a stopped process
|
|
|
|
(chld 20) ; to parent on child stop or exit
|
|
|
|
(ttin 21) ; to readers pgrp upon background tty read
|
|
|
|
(ttou 22) ; like TTIN for output if (tp->t_local<OSTOP)
|
|
|
|
|
|
|
|
(io 23) ; I/O possible, or completed
|
|
|
|
(xcpu 24) ; cpu time limit exceeded (see setrlimit)
|
|
|
|
(xfsz 25) ; file size limit exceeded (see setrlimit)
|
|
|
|
(msg 27) ; input data is in the HFT ring buffer
|
|
|
|
(winch 28) ; window size changed
|
|
|
|
(pwr 29) ; power-fail restart
|
|
|
|
(usr1 30) ; user defined signal 1
|
|
|
|
(usr2 31) ; user defined signal 2
|
|
|
|
(prof 32) ; profiling time alarm (see setitimer)
|
|
|
|
(danger 33) ; system crash imminent; free up some page space
|
|
|
|
(vtalrm 34) ; virtual time alarm (see setitimer)
|
|
|
|
(migrate 35) ; migrate process (see TCF)
|
|
|
|
(pre 36) ; programming exception
|
|
|
|
(virt 37) ; AIX virtual time alarm
|
|
|
|
)
|
|
|
|
|
1996-11-03 20:30:20 -05:00
|
|
|
(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))
|