123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- /*
- * Part of Scheme 48 1.9. See file COPYING for notices and license.
- *
- * Authors: Richard Kelsey, Jonathan Rees, Will Noble
- */
- #ifdef SIGABRT
- SIGABRT,
- #else
- -1,
- #endif
- #ifdef SIGALRM
- SIGALRM,
- #else
- -1,
- #endif
- #ifdef SIGFPE
- SIGFPE,
- #else
- -1,
- #endif
- #ifdef SIGHUP
- SIGHUP,
- #else
- -1,
- #endif
- #ifdef SIGILL
- SIGILL,
- #else
- -1,
- #endif
- #ifdef SIGINT
- SIGINT,
- #else
- -1,
- #endif
- #ifdef SIGKILL
- SIGKILL,
- #else
- -1,
- #endif
- #ifdef SIGPIPE
- SIGPIPE,
- #else
- -1,
- #endif
- #ifdef SIGQUIT
- SIGQUIT,
- #else
- -1,
- #endif
- #ifdef SIGSEGV
- SIGSEGV,
- #else
- -1,
- #endif
- #ifdef SIGTERM
- SIGTERM,
- #else
- -1,
- #endif
- #ifdef SIGUSR1
- SIGUSR1,
- #else
- -1,
- #endif
- #ifdef SIGUSR2
- SIGUSR2,
- #else
- -1,
- #endif
- #ifdef SIGCHLD
- SIGCHLD,
- #else
- -1,
- #endif
- #ifdef SIGCONT
- SIGCONT,
- #else
- -1,
- #endif
- #ifdef SIGSTOP
- SIGSTOP,
- #else
- -1,
- #endif
- #ifdef SIGTSTP
- SIGTSTP,
- #else
- -1,
- #endif
- #ifdef SIGTTIN
- SIGTTIN,
- #else
- -1,
- #endif
- #ifdef SIGTTOU
- SIGTTOU,
- #else
- -1,
- #endif
- #ifdef SIGBUS
- SIGBUS,
- #else
- -1,
- #endif
- #ifdef SIGTRAP
- SIGTRAP,
- #else
- -1,
- #endif
- #ifdef SIGIOT
- SIGIOT,
- #else
- -1,
- #endif
- #ifdef SIGEMT
- SIGEMT,
- #else
- -1,
- #endif
- #ifdef SIGSYS
- SIGSYS,
- #else
- -1,
- #endif
- #ifdef SIGSTKFLT
- SIGSTKFLT,
- #else
- -1,
- #endif
- #ifdef SIGURG
- SIGURG,
- #else
- -1,
- #endif
- #ifdef SIGIO
- SIGIO,
- #else
- -1,
- #endif
- #ifdef SIGPOLL
- SIGPOLL,
- #else
- -1,
- #endif
- #ifdef SIGCLD
- SIGCLD,
- #else
- -1,
- #endif
- #ifdef SIGXCPU
- SIGXCPU,
- #else
- -1,
- #endif
- #ifdef SIGXFSZ
- SIGXFSZ,
- #else
- -1,
- #endif
- #ifdef SIGVTALRM
- SIGVTALRM,
- #else
- -1,
- #endif
- #ifdef SIGPROF
- SIGPROF,
- #else
- -1,
- #endif
- #ifdef SIGPWR
- SIGPWR,
- #else
- -1,
- #endif
- #ifdef SIGINFO
- SIGINFO,
- #else
- -1,
- #endif
- #ifdef SIGLOST
- SIGLOST,
- #else
- -1,
- #endif
- #ifdef SIGWINCH
- SIGWINCH,
- #else
- -1,
- #endif
- #ifdef SIGUNUSED
- SIGUNUSED,
- #else
- -1,
- #endif
|