s48_signals.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Richard Kelsey, Jonathan Rees, Will Noble
  5. */
  6. #ifdef SIGABRT
  7. SIGABRT,
  8. #else
  9. -1,
  10. #endif
  11. #ifdef SIGALRM
  12. SIGALRM,
  13. #else
  14. -1,
  15. #endif
  16. #ifdef SIGFPE
  17. SIGFPE,
  18. #else
  19. -1,
  20. #endif
  21. #ifdef SIGHUP
  22. SIGHUP,
  23. #else
  24. -1,
  25. #endif
  26. #ifdef SIGILL
  27. SIGILL,
  28. #else
  29. -1,
  30. #endif
  31. #ifdef SIGINT
  32. SIGINT,
  33. #else
  34. -1,
  35. #endif
  36. #ifdef SIGKILL
  37. SIGKILL,
  38. #else
  39. -1,
  40. #endif
  41. #ifdef SIGPIPE
  42. SIGPIPE,
  43. #else
  44. -1,
  45. #endif
  46. #ifdef SIGQUIT
  47. SIGQUIT,
  48. #else
  49. -1,
  50. #endif
  51. #ifdef SIGSEGV
  52. SIGSEGV,
  53. #else
  54. -1,
  55. #endif
  56. #ifdef SIGTERM
  57. SIGTERM,
  58. #else
  59. -1,
  60. #endif
  61. #ifdef SIGUSR1
  62. SIGUSR1,
  63. #else
  64. -1,
  65. #endif
  66. #ifdef SIGUSR2
  67. SIGUSR2,
  68. #else
  69. -1,
  70. #endif
  71. #ifdef SIGCHLD
  72. SIGCHLD,
  73. #else
  74. -1,
  75. #endif
  76. #ifdef SIGCONT
  77. SIGCONT,
  78. #else
  79. -1,
  80. #endif
  81. #ifdef SIGSTOP
  82. SIGSTOP,
  83. #else
  84. -1,
  85. #endif
  86. #ifdef SIGTSTP
  87. SIGTSTP,
  88. #else
  89. -1,
  90. #endif
  91. #ifdef SIGTTIN
  92. SIGTTIN,
  93. #else
  94. -1,
  95. #endif
  96. #ifdef SIGTTOU
  97. SIGTTOU,
  98. #else
  99. -1,
  100. #endif
  101. #ifdef SIGBUS
  102. SIGBUS,
  103. #else
  104. -1,
  105. #endif
  106. #ifdef SIGTRAP
  107. SIGTRAP,
  108. #else
  109. -1,
  110. #endif
  111. #ifdef SIGIOT
  112. SIGIOT,
  113. #else
  114. -1,
  115. #endif
  116. #ifdef SIGEMT
  117. SIGEMT,
  118. #else
  119. -1,
  120. #endif
  121. #ifdef SIGSYS
  122. SIGSYS,
  123. #else
  124. -1,
  125. #endif
  126. #ifdef SIGSTKFLT
  127. SIGSTKFLT,
  128. #else
  129. -1,
  130. #endif
  131. #ifdef SIGURG
  132. SIGURG,
  133. #else
  134. -1,
  135. #endif
  136. #ifdef SIGIO
  137. SIGIO,
  138. #else
  139. -1,
  140. #endif
  141. #ifdef SIGPOLL
  142. SIGPOLL,
  143. #else
  144. -1,
  145. #endif
  146. #ifdef SIGCLD
  147. SIGCLD,
  148. #else
  149. -1,
  150. #endif
  151. #ifdef SIGXCPU
  152. SIGXCPU,
  153. #else
  154. -1,
  155. #endif
  156. #ifdef SIGXFSZ
  157. SIGXFSZ,
  158. #else
  159. -1,
  160. #endif
  161. #ifdef SIGVTALRM
  162. SIGVTALRM,
  163. #else
  164. -1,
  165. #endif
  166. #ifdef SIGPROF
  167. SIGPROF,
  168. #else
  169. -1,
  170. #endif
  171. #ifdef SIGPWR
  172. SIGPWR,
  173. #else
  174. -1,
  175. #endif
  176. #ifdef SIGINFO
  177. SIGINFO,
  178. #else
  179. -1,
  180. #endif
  181. #ifdef SIGLOST
  182. SIGLOST,
  183. #else
  184. -1,
  185. #endif
  186. #ifdef SIGWINCH
  187. SIGWINCH,
  188. #else
  189. -1,
  190. #endif
  191. #ifdef SIGUNUSED
  192. SIGUNUSED,
  193. #else
  194. -1,
  195. #endif