Home | History | Annotate | Line # | Download | only in ksh
      1  1.2  tls #	$NetBSD: siglist.in,v 1.2 1997/01/12 19:12:17 tls Exp $
      2  1.1  jtc #
      3  1.1  jtc # List of signals used to initialize ksh's signal table (see trap.c
      4  1.1  jtc # and siglist.sh).
      5  1.1  jtc #
      6  1.1  jtc # Note that if a system has multiple defines for the same signal
      7  1.1  jtc # (eg, SIGABRT vs SIGIOT, SIGCHLD vs SIGCLD), only the first one
      8  1.1  jtc # will be seen, so the order in this list is important.
      9  1.1  jtc #
     10  1.1  jtc     HUP    Hangup
     11  1.1  jtc     INT    Interrupt
     12  1.1  jtc     QUIT   Quit
     13  1.1  jtc     ILL    Illegal instruction
     14  1.1  jtc     TRAP   Trace trap
     15  1.1  jtc # before IOT (ABRT is posix and ABRT is sometimes the same as IOT)
     16  1.1  jtc     ABRT   Abort
     17  1.1  jtc     IOT    IOT instruction
     18  1.1  jtc     EMT    EMT trap
     19  1.1  jtc     FPE    Floating point exception
     20  1.1  jtc     KILL   Killed
     21  1.1  jtc # before BUS (linux doesn't really have a BUS, but defines it to UNUSED)
     22  1.1  jtc     UNUSED Unused
     23  1.1  jtc     BUS    Bus error
     24  1.1  jtc     SEGV   Memory fault
     25  1.1  jtc     SYS    Bad system call
     26  1.1  jtc     PIPE   Broken pipe
     27  1.1  jtc     ALRM   Alarm clock
     28  1.1  jtc     TERM   Terminated
     29  1.1  jtc     STKFLT Stack fault
     30  1.1  jtc     IO     I/O possible
     31  1.1  jtc     XCPU   CPU time limit exceeded
     32  1.1  jtc     XFSZ   File size limit exceeded
     33  1.1  jtc     VTALRM Virtual timer expired
     34  1.1  jtc     PROF   Profiling timer expired
     35  1.1  jtc     WINCH  Window size change
     36  1.1  jtc     LOST   File lock lost
     37  1.1  jtc     USR1   User defined signal 1
     38  1.1  jtc     USR2   User defined signal 2
     39  1.1  jtc     PWR    Power-fail/Restart
     40  1.1  jtc     POLL   Pollable event occurred
     41  1.1  jtc     STOP   Stopped (signal)
     42  1.1  jtc     TSTP   Stopped
     43  1.1  jtc     CONT   Continued
     44  1.1  jtc # before CLD (CHLD is posix and CHLD is sometimes the same as CLD)
     45  1.1  jtc     CHLD   Child exited
     46  1.1  jtc     CLD    Child exited
     47  1.1  jtc     TTIN   Stopped (tty input)
     48  1.1  jtc     TTOU   Stopped (tty output)
     49  1.1  jtc     INFO   Information request
     50  1.1  jtc     URG    Urgent I/O condition
     51  1.1  jtc # Solaris (svr4?) signals
     52  1.1  jtc     WAITING No runnable LWPs
     53  1.1  jtc     LWP	   Inter-LWP signal
     54  1.1  jtc     FREEZE Checkpoint freeze
     55  1.1  jtc     THAW   Checkpoint thaw
     56  1.1  jtc     CANCEL Thread cancellation
     57