home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / src / signals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-24  |  1.4 KB  |  104 lines

  1. /* signals.h */
  2. /* architecture-customized signals.h for zsh 2.4.315 beta
  3.  * for architecture "next",
  4.  * automagically generated by buildzsh -- do not edit */
  5. /* if all this is wrong, blame csh ;-) */
  6.  
  7. #define SIGCOUNT       30
  8.  
  9. #ifdef GLOBALS
  10.  
  11. char *sigmsg[SIGCOUNT+2] = {
  12.     "done",
  13.     "hangup",
  14.     "interrupt",
  15.     "quit",
  16.     "illegal instruction",
  17.     "trace trap",
  18.     "IOT instruction",
  19.     "EMT instruction",
  20.     "floating point exception",
  21.     "killed",
  22.     "bus error",
  23.     "segmentation fault",
  24.     "bad system call",
  25.     "broken pipe",
  26.     "alarm",
  27.     "terminated",
  28.     "SIGURG",
  29. #ifdef USE_SUSPENDED
  30.     "suspended (signal)",
  31. #else
  32.     "stopped (signal)",
  33. #endif
  34. #ifdef USE_SUSPENDED
  35.     "suspended",
  36. #else
  37.     "stopped",
  38. #endif
  39.     "continued",
  40.     "death of child",
  41. #ifdef USE_SUSPENDED
  42.     "suspended (tty input)",
  43. #else
  44.     "stopped (tty input)",
  45. #endif
  46. #ifdef USE_SUSPENDED
  47.     "suspended (tty output)",
  48. #else
  49.     "stopped (tty output)",
  50. #endif
  51.     "i/o ready",
  52.     "cpu limit exceeded",
  53.     "filesize limit exceeded",
  54.     "virtual time alarm",
  55.     "profile signal",
  56.     "window size changed",
  57.     "user signal 1",
  58.     "user signal 2",
  59.     NULL
  60. };
  61.  
  62. char *sigs[SIGCOUNT+4] = {
  63.     "EXIT",
  64.     "HUP",
  65.     "INT",
  66.     "QUIT",
  67.     "ILL",
  68.     "TRAP",
  69.     "IOT",
  70.     "EMT",
  71.     "FPE",
  72.     "KILL",
  73.     "BUS",
  74.     "SEGV",
  75.     "SYS",
  76.     "PIPE",
  77.     "ALRM",
  78.     "TERM",
  79.     "URG",
  80.     "STOP",
  81.     "TSTP",
  82.     "CONT",
  83.     "CHLD",
  84.     "TTIN",
  85.     "TTOU",
  86.     "IO",
  87.     "XCPU",
  88.     "XFSZ",
  89.     "VTALRM",
  90.     "PROF",
  91.     "WINCH",
  92.     "USR1",
  93.     "USR2",
  94.     "ZERR",
  95.     "DEBUG",
  96.     NULL
  97. };
  98.  
  99. #else
  100.  
  101. extern char *sigs[SIGCOUNT+4],*sigmsg[SIGCOUNT+2];
  102.  
  103. #endif
  104.