home *** CD-ROM | disk | FTP | other *** search
- /* signals.h */
- /* architecture-customized signals.h for zsh 2.4.315 beta
- * for architecture "next",
- * automagically generated by buildzsh -- do not edit */
- /* if all this is wrong, blame csh ;-) */
-
- #define SIGCOUNT 30
-
- #ifdef GLOBALS
-
- char *sigmsg[SIGCOUNT+2] = {
- "done",
- "hangup",
- "interrupt",
- "quit",
- "illegal instruction",
- "trace trap",
- "IOT instruction",
- "EMT instruction",
- "floating point exception",
- "killed",
- "bus error",
- "segmentation fault",
- "bad system call",
- "broken pipe",
- "alarm",
- "terminated",
- "SIGURG",
- #ifdef USE_SUSPENDED
- "suspended (signal)",
- #else
- "stopped (signal)",
- #endif
- #ifdef USE_SUSPENDED
- "suspended",
- #else
- "stopped",
- #endif
- "continued",
- "death of child",
- #ifdef USE_SUSPENDED
- "suspended (tty input)",
- #else
- "stopped (tty input)",
- #endif
- #ifdef USE_SUSPENDED
- "suspended (tty output)",
- #else
- "stopped (tty output)",
- #endif
- "i/o ready",
- "cpu limit exceeded",
- "filesize limit exceeded",
- "virtual time alarm",
- "profile signal",
- "window size changed",
- "user signal 1",
- "user signal 2",
- NULL
- };
-
- char *sigs[SIGCOUNT+4] = {
- "EXIT",
- "HUP",
- "INT",
- "QUIT",
- "ILL",
- "TRAP",
- "IOT",
- "EMT",
- "FPE",
- "KILL",
- "BUS",
- "SEGV",
- "SYS",
- "PIPE",
- "ALRM",
- "TERM",
- "URG",
- "STOP",
- "TSTP",
- "CONT",
- "CHLD",
- "TTIN",
- "TTOU",
- "IO",
- "XCPU",
- "XFSZ",
- "VTALRM",
- "PROF",
- "WINCH",
- "USR1",
- "USR2",
- "ZERR",
- "DEBUG",
- NULL
- };
-
- #else
-
- extern char *sigs[SIGCOUNT+4],*sigmsg[SIGCOUNT+2];
-
- #endif
-