cpp_sig_symbols.c 2.5 KB

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