siginfo.h 8.5 KB

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