1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#ifdef SIGABRT
scm_c_define ("SIGABRT", SCM_MAKINUM (SIGABRT));
#endif
#ifdef SIGALRM
scm_c_define ("SIGALRM", SCM_MAKINUM (SIGALRM));
#endif
#ifdef SIGBREAK
scm_c_define ("SIGBREAK", SCM_MAKINUM (SIGBREAK));
#endif
#ifdef SIGBUS
scm_c_define ("SIGBUS", SCM_MAKINUM (SIGBUS));
#endif
#ifdef SIGCHLD
scm_c_define ("SIGCHLD", SCM_MAKINUM (SIGCHLD));
#endif
#ifdef SIGCLD
scm_c_define ("SIGCLD", SCM_MAKINUM (SIGCLD));
#endif
#ifdef SIGCONT
scm_c_define ("SIGCONT", SCM_MAKINUM (SIGCONT));
#endif
#ifdef SIGFPE
scm_c_define ("SIGFPE", SCM_MAKINUM (SIGFPE));
#endif
#ifdef SIGHUP
scm_c_define ("SIGHUP", SCM_MAKINUM (SIGHUP));
#endif
#ifdef SIGILL
scm_c_define ("SIGILL", SCM_MAKINUM (SIGILL));
#endif
#ifdef SIGINT
scm_c_define ("SIGINT", SCM_MAKINUM (SIGINT));
#endif
#ifdef SIGIO
scm_c_define ("SIGIO", SCM_MAKINUM (SIGIO));
#endif
#ifdef SIGIOT
scm_c_define ("SIGIOT", SCM_MAKINUM (SIGIOT));
#endif
#ifdef SIGKILL
scm_c_define ("SIGKILL", SCM_MAKINUM (SIGKILL));
#endif
#ifdef SIGPIPE
scm_c_define ("SIGPIPE", SCM_MAKINUM (SIGPIPE));
#endif
#ifdef SIGPOLL
scm_c_define ("SIGPOLL", SCM_MAKINUM (SIGPOLL));
#endif
#ifdef SIGPROF
scm_c_define ("SIGPROF", SCM_MAKINUM (SIGPROF));
#endif
#ifdef SIGPWR
scm_c_define ("SIGPWR", SCM_MAKINUM (SIGPWR));
#endif
#ifdef SIGQUIT
scm_c_define ("SIGQUIT", SCM_MAKINUM (SIGQUIT));
#endif
#ifdef SIGSEGV
scm_c_define ("SIGSEGV", SCM_MAKINUM (SIGSEGV));
#endif
#ifdef SIGSTKFLT
scm_c_define ("SIGSTKFLT", SCM_MAKINUM (SIGSTKFLT));
#endif
#ifdef SIGSTOP
scm_c_define ("SIGSTOP", SCM_MAKINUM (SIGSTOP));
#endif
#ifdef SIGSYS
scm_c_define ("SIGSYS", SCM_MAKINUM (SIGSYS));
#endif
#ifdef SIGTERM
scm_c_define ("SIGTERM", SCM_MAKINUM (SIGTERM));
#endif
#ifdef SIGTRAP
scm_c_define ("SIGTRAP", SCM_MAKINUM (SIGTRAP));
#endif
#ifdef SIGTSTP
scm_c_define ("SIGTSTP", SCM_MAKINUM (SIGTSTP));
#endif
#ifdef SIGTTIN
scm_c_define ("SIGTTIN", SCM_MAKINUM (SIGTTIN));
#endif
#ifdef SIGTTOU
scm_c_define ("SIGTTOU", SCM_MAKINUM (SIGTTOU));
#endif
#ifdef SIGUNUSED
scm_c_define ("SIGUNUSED", SCM_MAKINUM (SIGUNUSED));
#endif
#ifdef SIGURG
scm_c_define ("SIGURG", SCM_MAKINUM (SIGURG));
#endif
#ifdef SIGUSR1
scm_c_define ("SIGUSR1", SCM_MAKINUM (SIGUSR1));
#endif
#ifdef SIGUSR2
scm_c_define ("SIGUSR2", SCM_MAKINUM (SIGUSR2));
#endif
#ifdef SIGVTALRM
scm_c_define ("SIGVTALRM", SCM_MAKINUM (SIGVTALRM));
#endif
#ifdef SIGWINCH
scm_c_define ("SIGWINCH", SCM_MAKINUM (SIGWINCH));
#endif
#ifdef SIGXCPU
scm_c_define ("SIGXCPU", SCM_MAKINUM (SIGXCPU));
#endif
#ifdef SIGXFSZ
scm_c_define ("SIGXFSZ", SCM_MAKINUM (SIGXFSZ));
#endif
|