siginfo.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /* siginfo_t, sigevent and constants. Linux/Alpha version.
  2. Copyright (C) 1997-2002, 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #if !defined _SIGNAL_H && !defined __need_siginfo_t \
  16. && !defined __need_sigevent_t
  17. # error "Never include this file directly. Use <signal.h> instead"
  18. #endif
  19. #if (!defined __have_sigval_t \
  20. && (defined _SIGNAL_H || defined __need_siginfo_t \
  21. || defined __need_sigevent_t))
  22. # define __have_sigval_t 1
  23. /* Type for data associated with a signal. */
  24. typedef union sigval
  25. {
  26. int sival_int;
  27. void *sival_ptr;
  28. } sigval_t;
  29. #endif
  30. #if (!defined __have_siginfo_t \
  31. && (defined _SIGNAL_H || defined __need_siginfo_t))
  32. # define __have_siginfo_t 1
  33. # define __SI_MAX_SIZE 128
  34. # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 4)
  35. typedef struct siginfo
  36. {
  37. int si_signo; /* Signal number. */
  38. int si_errno; /* If non-zero, an errno value associated with
  39. this signal, as defined in <errno.h>. */
  40. int si_code; /* Signal code. */
  41. union
  42. {
  43. int _pad[__SI_PAD_SIZE];
  44. /* kill(). */
  45. struct
  46. {
  47. __pid_t si_pid; /* Sending process ID. */
  48. __uid_t si_uid; /* Real user ID of sending process. */
  49. } _kill;
  50. /* POSIX.1b timers. */
  51. struct
  52. {
  53. int si_tid; /* Timer ID. */
  54. int si_overrun; /* Overrun count. */
  55. sigval_t si_sigval; /* Signal value. */
  56. } _timer;
  57. /* POSIX.1b signals. */
  58. struct
  59. {
  60. __pid_t si_pid; /* Sending process ID. */
  61. __uid_t si_uid; /* Real user ID of sending process. */
  62. sigval_t si_sigval; /* Signal value. */
  63. } _rt;
  64. /* SIGCHLD. */
  65. struct
  66. {
  67. __pid_t si_pid; /* Which child. */
  68. __uid_t si_uid; /* Real user ID of sending process. */
  69. int si_status; /* Exit value or signal. */
  70. __clock_t si_utime;
  71. __clock_t si_stime;
  72. } _sigchld;
  73. /* SIGILL, SIGFPE, SIGSEGV, SIGBUS. */
  74. struct
  75. {
  76. void *si_addr; /* Faulting insn/memory ref. */
  77. } _sigfault;
  78. /* SIGPOLL. */
  79. struct
  80. {
  81. int si_band; /* Band event for SIGPOLL. */
  82. int si_fd;
  83. } _sigpoll;
  84. } _sifields;
  85. } siginfo_t;
  86. /* X/Open requires some more fields with fixed names. */
  87. # define si_pid _sifields._kill.si_pid
  88. # define si_uid _sifields._kill.si_uid
  89. # define si_timerid _sifields._timer.si_tid
  90. # define si_overrun _sifields._timer.si_overrun
  91. # define si_status _sifields._sigchld.si_status
  92. # define si_utime _sifields._sigchld.si_utime
  93. # define si_stime _sifields._sigchld.si_stime
  94. # define si_value _sifields._rt.si_sigval
  95. # define si_int _sifields._rt.si_sigval.sival_int
  96. # define si_ptr _sifields._rt.si_sigval.sival_ptr
  97. # define si_addr _sifields._sigfault.si_addr
  98. # define si_band _sifields._sigpoll.si_band
  99. # define si_fd _sifields._sigpoll.si_fd
  100. /* Values for `si_code'. Positive values are reserved for kernel-generated
  101. signals. */
  102. enum
  103. {
  104. SI_ASYNCNL = -60, /* Sent by asynch name lookup completion. */
  105. # define SI_ASYNCNL SI_ASYNCNL
  106. SI_TKILL = -6, /* Sent by tkill. */
  107. # define SI_TKILL SI_TKILL
  108. SI_SIGIO, /* Sent by queued SIGIO. */
  109. # define SI_SIGIO SI_SIGIO
  110. SI_ASYNCIO, /* Sent by AIO completion. */
  111. # define SI_ASYNCIO SI_ASYNCIO
  112. SI_MESGQ, /* Sent by real time mesq state change. */
  113. # define SI_MESGQ SI_MESGQ
  114. SI_TIMER, /* Sent by timer expiration. */
  115. # define SI_TIMER SI_TIMER
  116. SI_QUEUE, /* Sent by sigqueue. */
  117. # define SI_QUEUE SI_QUEUE
  118. SI_USER, /* Sent by kill, sigsend, raise. */
  119. # define SI_USER SI_USER
  120. SI_KERNEL = 0x80 /* Send by kernel. */
  121. #define SI_KERNEL SI_KERNEL
  122. };
  123. /* `si_code' values for SIGILL signal. */
  124. enum
  125. {
  126. ILL_ILLOPC = 1, /* Illegal opcode. */
  127. # define ILL_ILLOPC ILL_ILLOPC
  128. ILL_ILLOPN, /* Illegal operand. */
  129. # define ILL_ILLOPN ILL_ILLOPN
  130. ILL_ILLADR, /* Illegal addressing mode. */
  131. # define ILL_ILLADR ILL_ILLADR
  132. ILL_ILLTRP, /* Illegal trap. */
  133. # define ILL_ILLTRP ILL_ILLTRP
  134. ILL_PRVOPC, /* Privileged opcode. */
  135. # define ILL_PRVOPC ILL_PRVOPC
  136. ILL_PRVREG, /* Privileged register. */
  137. # define ILL_PRVREG ILL_PRVREG
  138. ILL_COPROC, /* Coprocessor error. */
  139. # define ILL_COPROC ILL_COPROC
  140. ILL_BADSTK /* Internal stack error. */
  141. # define ILL_BADSTK ILL_BADSTK
  142. };
  143. /* `si_code' values for SIGFPE signal. */
  144. enum
  145. {
  146. FPE_INTDIV = 1, /* Integer divide by zero. */
  147. # define FPE_INTDIV FPE_INTDIV
  148. FPE_INTOVF, /* Integer overflow. */
  149. # define FPE_INTOVF FPE_INTOVF
  150. FPE_FLTDIV, /* Floating point divide by zero. */
  151. # define FPE_FLTDIV FPE_FLTDIV
  152. FPE_FLTOVF, /* Floating point overflow. */
  153. # define FPE_FLTOVF FPE_FLTOVF
  154. FPE_FLTUND, /* Floating point underflow. */
  155. # define FPE_FLTUND FPE_FLTUND
  156. FPE_FLTRES, /* Floating point inexact result. */
  157. # define FPE_FLTRES FPE_FLTRES
  158. FPE_FLTINV, /* Floating point invalid operation. */
  159. # define FPE_FLTINV FPE_FLTINV
  160. FPE_FLTSUB /* Subscript out of range. */
  161. # define FPE_FLTSUB FPE_FLTSUB
  162. };
  163. /* `si_code' values for SIGSEGV signal. */
  164. enum
  165. {
  166. SEGV_MAPERR = 1, /* Address not mapped to object. */
  167. # define SEGV_MAPERR SEGV_MAPERR
  168. SEGV_ACCERR /* Invalid permissions for mapped object. */
  169. # define SEGV_ACCERR SEGV_ACCERR
  170. };
  171. /* `si_code' values for SIGBUS signal. */
  172. enum
  173. {
  174. BUS_ADRALN = 1, /* Invalid address alignment. */
  175. # define BUS_ADRALN BUS_ADRALN
  176. BUS_ADRERR, /* Non-existant physical address. */
  177. # define BUS_ADRERR BUS_ADRERR
  178. BUS_OBJERR /* Object specific hardware error. */
  179. # define BUS_OBJERR BUS_OBJERR
  180. };
  181. /* `si_code' values for SIGTRAP signal. */
  182. enum
  183. {
  184. TRAP_BRKPT = 1, /* Process breakpoint. */
  185. # define TRAP_BRKPT TRAP_BRKPT
  186. TRAP_TRACE /* Process trace trap. */
  187. # define TRAP_TRACE TRAP_TRACE
  188. };
  189. /* `si_code' values for SIGCHLD signal. */
  190. enum
  191. {
  192. CLD_EXITED = 1, /* Child has exited. */
  193. # define CLD_EXITED CLD_EXITED
  194. CLD_KILLED, /* Child was killed. */
  195. # define CLD_KILLED CLD_KILLED
  196. CLD_DUMPED, /* Child terminated abnormally. */
  197. # define CLD_DUMPED CLD_DUMPED
  198. CLD_TRAPPED, /* Traced child has trapped. */
  199. # define CLD_TRAPPED CLD_TRAPPED
  200. CLD_STOPPED, /* Child has stopped. */
  201. # define CLD_STOPPED CLD_STOPPED
  202. CLD_CONTINUED /* Stopped child has continued. */
  203. # define CLD_CONTINUED CLD_CONTINUED
  204. };
  205. /* `si_code' values for SIGPOLL signal. */
  206. enum
  207. {
  208. POLL_IN = 1, /* Data input available. */
  209. # define POLL_IN POLL_IN
  210. POLL_OUT, /* Output buffers available. */
  211. # define POLL_OUT POLL_OUT
  212. POLL_MSG, /* Input message available. */
  213. # define POLL_MSG POLL_MSG
  214. POLL_ERR, /* I/O error. */
  215. # define POLL_ERR POLL_ERR
  216. POLL_PRI, /* High priority input available. */
  217. # define POLL_PRI POLL_PRI
  218. POLL_HUP /* Device disconnected. */
  219. # define POLL_HUP POLL_HUP
  220. };
  221. # undef __need_siginfo_t
  222. #endif /* !have siginfo_t && (have _SIGNAL_H || need siginfo_t). */
  223. #if (defined _SIGNAL_H || defined __need_sigevent_t) \
  224. && !defined __have_sigevent_t
  225. # define __have_sigevent_t 1
  226. /* Structure to transport application-defined values with signals. */
  227. # define __SIGEV_MAX_SIZE 64
  228. # if __WORDSIZE == 64
  229. # define __SIGEV_PAD_SIZE ((__SIGEV_MAX_SIZE / sizeof (int)) - 4)
  230. # else
  231. # define __SIGEV_PAD_SIZE ((__SIGEV_MAX_SIZE / sizeof (int)) - 3)
  232. # endif
  233. typedef struct sigevent
  234. {
  235. sigval_t sigev_value;
  236. int sigev_signo;
  237. int sigev_notify;
  238. union
  239. {
  240. int _pad[__SIGEV_PAD_SIZE];
  241. /* When SIGEV_SIGNAL and SIGEV_THREAD_ID set, LWP ID of the
  242. thread to receive the signal. */
  243. __pid_t _tid;
  244. struct
  245. {
  246. void (*_function) (sigval_t); /* Function to start. */
  247. void *_attribute; /* Really pthread_attr_t. */
  248. } _sigev_thread;
  249. } _sigev_un;
  250. } sigevent_t;
  251. /* POSIX names to access some of the members. */
  252. # define sigev_notify_function _sigev_un._sigev_thread._function
  253. # define sigev_notify_attributes _sigev_un._sigev_thread._attribute
  254. /* `sigev_notify' values. */
  255. enum
  256. {
  257. SIGEV_SIGNAL = 0, /* Notify via signal. */
  258. # define SIGEV_SIGNAL SIGEV_SIGNAL
  259. SIGEV_NONE, /* Other notification: meaningless. */
  260. # define SIGEV_NONE SIGEV_NONE
  261. SIGEV_THREAD, /* Deliver via thread creation. */
  262. # define SIGEV_THREAD SIGEV_THREAD
  263. SIGEV_THREAD_ID = 4 /* Send signal to specific thread. */
  264. #define SIGEV_THREAD_ID SIGEV_THREAD_ID
  265. };
  266. #endif /* have _SIGNAL_H. */