siginfo.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1998, 1999, 2001 Ralf Baechle
  7.  * Copyright (C) 2000, 2001 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_SIGINFO_H
  10. #define _ASM_SIGINFO_H
  11. #include <linux/types.h>
  12. /* This structure matches IRIX 32/n32 ABIs for binary compatibility. */
  13. typedef union sigval {
  14. int sival_int;
  15. void *sival_ptr;
  16. } sigval_t;
  17. #ifdef __KERNEL__
  18. typedef union sigval32 {
  19. int sival_int;
  20. s32 sival_ptr;
  21. } sigval_t32;
  22. #endif /* __KERNEL__ */
  23. /* This structure matches IRIX 32/n32 ABIs for binary compatibility but
  24.    has Linux extensions.  */
  25. #define SI_MAX_SIZE 128
  26. #define SI_PAD_SIZE ((SI_MAX_SIZE/sizeof(int)) - 4)
  27. #define SI_PAD_SIZE32 ((SI_MAX_SIZE/sizeof(int)) - 3)
  28. typedef struct siginfo {
  29. int si_signo;
  30. int si_code;
  31. int si_errno;
  32. union {
  33. int _pad[SI_PAD_SIZE];
  34. /* kill() */
  35. struct {
  36. pid_t _pid; /* sender's pid */
  37. uid_t _uid; /* sender's uid */
  38. } _kill;
  39. /* SIGCHLD */
  40. struct {
  41. pid_t _pid; /* which child */
  42. uid_t _uid; /* sender's uid */
  43. clock_t _utime;
  44. int _status; /* exit code */
  45. clock_t _stime;
  46. } _sigchld;
  47. /* IRIX SIGCHLD */
  48. struct {
  49. pid_t _pid; /* which child */
  50. clock_t _utime;
  51. int _status; /* exit code */
  52. clock_t _stime;
  53. } _irix_sigchld;
  54. /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
  55. struct {
  56. void *_addr; /* faulting insn/memory ref. */
  57. } _sigfault;
  58. /* SIGPOLL, SIGXFSZ (To do ...)  */
  59. struct {
  60. long _band; /* POLL_IN, POLL_OUT, POLL_MSG */
  61. int _fd;
  62. } _sigpoll;
  63. /* POSIX.1b timers */
  64. struct {
  65. unsigned int _timer1;
  66. unsigned int _timer2;
  67. } _timer;
  68. /* POSIX.1b signals */
  69. struct {
  70. pid_t _pid; /* sender's pid */
  71. uid_t _uid; /* sender's uid */
  72. sigval_t _sigval;
  73. } _rt;
  74. } _sifields;
  75. } siginfo_t;
  76. #ifdef __KERNEL__
  77. typedef struct siginfo32 {
  78. int si_signo;
  79. int si_code;
  80. int si_errno;
  81. union {
  82. int _pad[SI_PAD_SIZE32];
  83. /* kill() */
  84. struct {
  85. __kernel_pid_t32 _pid; /* sender's pid */
  86. __kernel_uid_t32 _uid; /* sender's uid */
  87. } _kill;
  88. /* SIGCHLD */
  89. struct {
  90. __kernel_pid_t32 _pid; /* which child */
  91. __kernel_uid_t32 _uid; /* sender's uid */
  92. __kernel_clock_t32 _utime;
  93. int _status; /* exit code */
  94. __kernel_clock_t32 _stime;
  95. } _sigchld;
  96. /* IRIX SIGCHLD */
  97. struct {
  98. __kernel_pid_t32 _pid; /* which child */
  99. __kernel_clock_t32 _utime;
  100. int _status; /* exit code */
  101. __kernel_clock_t32 _stime;
  102. } _irix_sigchld;
  103. /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
  104. struct {
  105. s32 _addr; /* faulting insn/memory ref. */
  106. } _sigfault;
  107. /* SIGPOLL, SIGXFSZ (To do ...)  */
  108. struct {
  109. int _band; /* POLL_IN, POLL_OUT, POLL_MSG */
  110. int _fd;
  111. } _sigpoll;
  112. /* POSIX.1b timers */
  113. struct {
  114. unsigned int _timer1;
  115. unsigned int _timer2;
  116. } _timer;
  117. /* POSIX.1b signals */
  118. struct {
  119. __kernel_pid_t32 _pid; /* sender's pid */
  120. __kernel_uid_t32 _uid; /* sender's uid */
  121. sigval_t32 _sigval;
  122. } _rt;
  123. } _sifields;
  124. } siginfo_t32;
  125. #endif /* __KERNEL__ */
  126. /*
  127.  * How these fields are to be accessed.
  128.  */
  129. #define si_pid _sifields._kill._pid
  130. #define si_uid _sifields._kill._uid
  131. #define si_status _sifields._sigchld._status
  132. #define si_utime _sifields._sigchld._utime
  133. #define si_stime _sifields._sigchld._stime
  134. #define si_value _sifields._rt._sigval
  135. #define si_int _sifields._rt._sigval.sival_int
  136. #define si_ptr _sifields._rt._sigval.sival_ptr
  137. #define si_addr _sifields._sigfault._addr
  138. #define si_band _sifields._sigpoll._band
  139. #define si_fd _sifields._sigpoll._fd
  140. #ifdef __KERNEL__
  141. #define __SI_MASK 0xffff0000
  142. #define __SI_KILL (0 << 16)
  143. #define __SI_TIMER (1 << 16)
  144. #define __SI_POLL (2 << 16)
  145. #define __SI_FAULT (3 << 16)
  146. #define __SI_CHLD (4 << 16)
  147. #define __SI_RT (5 << 16)
  148. #define __SI_CODE(T,N) ((T) << 16 | ((N) & 0xffff))
  149. #else
  150. #define __SI_KILL 0
  151. #define __SI_TIMER 0
  152. #define __SI_POLL 0
  153. #define __SI_FAULT 0
  154. #define __SI_CHLD 0
  155. #define __SI_RT 0
  156. #define __SI_CODE(T,N) (N)
  157. #endif
  158. /*
  159.  * si_code values
  160.  * Again these have been choosen to be IRIX compatible.
  161.  */
  162. #define SI_USER 0 /* sent by kill, sigsend, raise */
  163. #define SI_KERNEL 0x80 /* sent by the kernel from somewhere */
  164. #define SI_QUEUE -1 /* sent by sigqueue */
  165. #define SI_ASYNCIO -2 /* sent by AIO completion */
  166. #define SI_TIMER __SI_CODE(__SI_TIMER,-3) /* sent by timer expiration */
  167. #define SI_MESGQ -4 /* sent by real time mesq state change */
  168. #define SI_SIGIO -5 /* sent by queued SIGIO */
  169. #define SI_TKILL -6 /* sent by tkill system call */
  170. #define SI_FROMUSER(siptr) ((siptr)->si_code <= 0)
  171. #define SI_FROMKERNEL(siptr) ((siptr)->si_code > 0)
  172. /*
  173.  * SIGILL si_codes
  174.  */
  175. #define ILL_ILLOPC (__SI_FAULT|1) /* illegal opcode */
  176. #define ILL_ILLOPN (__SI_FAULT|2) /* illegal operand */
  177. #define ILL_ILLADR (__SI_FAULT|3) /* illegal addressing mode */
  178. #define ILL_ILLTRP (__SI_FAULT|4) /* illegal trap */
  179. #define ILL_PRVOPC (__SI_FAULT|5) /* privileged opcode */
  180. #define ILL_PRVREG (__SI_FAULT|6) /* privileged register */
  181. #define ILL_COPROC (__SI_FAULT|7) /* coprocessor error */
  182. #define ILL_BADSTK (__SI_FAULT|8) /* internal stack error */
  183. #define NSIGILL 8
  184. /*
  185.  * SIGFPE si_codes
  186.  */
  187. #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
  188. #define FPE_INTOVF (__SI_FAULT|2) /* integer overflow */
  189. #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
  190. #define FPE_FLTOVF (__SI_FAULT|4) /* floating point overflow */
  191. #define FPE_FLTUND (__SI_FAULT|5) /* floating point underflow */
  192. #define FPE_FLTRES (__SI_FAULT|6) /* floating point inexact result */
  193. #define FPE_FLTINV (__SI_FAULT|7) /* floating point invalid operation */
  194. #define FPE_FLTSUB (__SI_FAULT|8) /* subscript out of range */
  195. #define NSIGFPE 8
  196. /*
  197.  * SIGSEGV si_codes
  198.  */
  199. #define SEGV_MAPERR (__SI_FAULT|1) /* address not mapped to object */
  200. #define SEGV_ACCERR (__SI_FAULT|2) /* invalid permissions for mapped object */
  201. #define NSIGSEGV 2
  202. /*
  203.  * SIGBUS si_codes
  204.  */
  205. #define BUS_ADRALN (__SI_FAULT|1) /* invalid address alignment */
  206. #define BUS_ADRERR (__SI_FAULT|2) /* non-existant physical address */
  207. #define BUS_OBJERR (__SI_FAULT|3) /* object specific hardware error */
  208. #define NSIGBUS 3
  209. /*
  210.  * SIGTRAP si_codes
  211.  */
  212. #define TRAP_BRKPT (__SI_FAULT|1) /* process breakpoint */
  213. #define TRAP_TRACE (__SI_FAULT|2) /* process trace trap */
  214. #define NSIGTRAP 2
  215. /*
  216.  * SIGCHLD si_codes
  217.  */
  218. #define CLD_EXITED (__SI_CHLD|1) /* child has exited */
  219. #define CLD_KILLED (__SI_CHLD|2) /* child was killed */
  220. #define CLD_DUMPED (__SI_CHLD|3) /* child terminated abnormally */
  221. #define CLD_TRAPPED (__SI_CHLD|4) /* traced child has trapped */
  222. #define CLD_STOPPED (__SI_CHLD|5) /* child has stopped */
  223. #define CLD_CONTINUED (__SI_CHLD|6) /* stopped child has continued */
  224. #define NSIGCHLD 6
  225. /*
  226.  * SIGPOLL si_codes
  227.  */
  228. #define POLL_IN (__SI_POLL|1) /* data input available */
  229. #define POLL_OUT (__SI_POLL|2) /* output buffers available */
  230. #define POLL_MSG (__SI_POLL|3) /* input message available */
  231. #define POLL_ERR (__SI_POLL|4) /* i/o error */
  232. #define POLL_PRI (__SI_POLL|5) /* high priority input available */
  233. #define POLL_HUP (__SI_POLL|6) /* device disconnected */
  234. #define NSIGPOLL 6
  235. /*
  236.  * sigevent definitions
  237.  *
  238.  * It seems likely that SIGEV_THREAD will have to be handled from
  239.  * userspace, libpthread transmuting it to SIGEV_SIGNAL, which the
  240.  * thread manager then catches and does the appropriate nonsense.
  241.  * However, everything is written out here so as to not get lost.
  242.  */
  243. #define SIGEV_NONE 128 /* other notification: meaningless */
  244. #define SIGEV_SIGNAL 129 /* notify via signal */
  245. #define SIGEV_CALLBACK 130 /* ??? */
  246. #define SIGEV_THREAD 131 /* deliver via thread creation */
  247. #define SIGEV_MAX_SIZE 64
  248. #define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 4)
  249. /* XXX This one isn't yet IRIX / ABI compatible.  */
  250. typedef struct sigevent {
  251. int sigev_notify;
  252. sigval_t sigev_value;
  253. int sigev_signo;
  254. union {
  255. int _pad[SIGEV_PAD_SIZE];
  256. struct {
  257. void (*_function)(sigval_t);
  258. void *_attribute; /* really pthread_attr_t */
  259. } _sigev_thread;
  260. } _sigev_un;
  261. } sigevent_t;
  262. #define sigev_notify_function _sigev_un._sigev_thread._function
  263. #define sigev_notify_attributes _sigev_un._sigev_thread._attribute
  264. #ifdef __KERNEL__
  265. #include <linux/string.h>
  266. static inline void copy_siginfo(siginfo_t *to, siginfo_t *from)
  267. {
  268. if (from->si_code < 0)
  269. memcpy(to, from, sizeof(siginfo_t));
  270. else
  271. /* _sigchld is currently the largest know union member */
  272. memcpy(to, from, 3*sizeof(int) + sizeof(from->_sifields._sigchld));
  273. }
  274. extern int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from);
  275. #endif /* __KERNEL__ */
  276. #endif /* _ASM_SIGINFO_H */