home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / glibc-1.06 / sysdeps / unix / siglist.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-01  |  859 b   |  44 lines

  1. #include <ansidecl.h>
  2. #include <stddef.h>
  3.  
  4.  
  5. /* This is a list of all known signal numbers.  */
  6.  
  7. CONST char *CONST _sys_siglist[] =
  8.   {
  9.     "Signal 0",
  10.     "Hangup",
  11.     "Interrupt",
  12.     "Quit",
  13.     "Illegal instruction",
  14.     "Trace/BPT trap",
  15.     "IOT trap",
  16.     "EMT trap",
  17.     "Floating point exception",
  18.     "Killed",
  19.     "Bus error",
  20.     "Segmentation fault",
  21.     "Bad system call",
  22.     "Broken pipe",
  23.     "Alarm clock",
  24.     "Terminated",
  25.     "Urgent I/O condition",
  26.     "Stopped (signal)",
  27.     "Stopped",
  28.     "Continued",
  29.     "Child exited",
  30.     "Stopped (tty input)",
  31.     "Stopped (tty output)",
  32.     "I/O possible",
  33.     "Cputime limit exceeded",
  34.     "Filesize limit exceeded",
  35.     "Virtual timer expired",
  36.     "Profiling timer expired",
  37.     "Window changed",
  38.     "Resource lost",
  39.     "User defined signal 1",
  40.     "User defined signal 2",
  41.     NULL
  42.   };
  43.  
  44.