siginfo.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _I386_SIGINFO_H
  2. #define _I386_SIGINFO_H
  3. #include <linux/types.h>
  4. /* XXX: This structure was copied from the Alpha; is there an iBCS version?  */
  5. typedef union sigval {
  6. int sival_int;
  7. void *sival_ptr;
  8. } sigval_t;
  9. #define SI_MAX_SIZE 128
  10. #define SI_PAD_SIZE ((SI_MAX_SIZE/sizeof(int)) - 3)
  11. typedef struct siginfo {
  12. int si_signo;
  13. int si_errno;
  14. int si_code;
  15. union {
  16. int _pad[SI_PAD_SIZE];
  17. /* kill() */
  18. struct {
  19. pid_t _pid; /* sender's pid */
  20. uid_t _uid; /* sender's uid */
  21. } _kill;
  22. /* POSIX.1b timers */
  23. struct {
  24. unsigned int _timer1;
  25. unsigned int _timer2;
  26. } _timer;
  27. /* POSIX.1b signals */
  28. struct {
  29. pid_t _pid; /* sender's pid */
  30. uid_t _uid; /* sender's uid */
  31. sigval_t _sigval;
  32. } _rt;
  33. /* SIGCHLD */
  34. struct {
  35. pid_t _pid; /* which child */
  36. uid_t _uid; /* sender's uid */
  37. int _status; /* exit code */
  38. clock_t _utime;
  39. clock_t _stime;
  40. } _sigchld;
  41. /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
  42. struct {
  43. void *_addr; /* faulting insn/memory ref. */
  44. } _sigfault;
  45. /* SIGPOLL */
  46. struct {
  47. int _band; /* POLL_IN, POLL_OUT, POLL_MSG */
  48. int _fd;
  49. } _sigpoll;
  50. } _sifields;
  51. } siginfo_t;
  52. /*
  53.  * How these fields are to be accessed.
  54.  */
  55. #define si_pid _sifields._kill._pid
  56. #define si_uid _sifields._kill._uid
  57. #define si_status _sifields._sigchld._status
  58. #define si_utime _sifields._sigchld._utime
  59. #define si_stime _sifields._sigchld._stime
  60. #define si_value _sifields._rt._sigval
  61. #define si_int _sifields._rt._sigval.sival_int
  62. #define si_ptr _sifields._rt._sigval.sival_ptr
  63. #define si_addr _sifields._sigfault._addr
  64. #define si_band _sifields._sigpoll._band
  65. #define si_fd _sifields._sigpoll._fd
  66. #ifdef __KERNEL__
  67. #define __SI_MASK 0xffff0000
  68. #define __SI_KILL (0 << 16)
  69. #define __SI_TIMER (1 << 16)
  70. #define __SI_POLL (2 << 16)
  71. #define __SI_FAULT (3 << 16)
  72. #define __SI_CHLD (4 << 16)
  73. #define __SI_RT (5 << 16)
  74. #define __SI_CODE(T,N) ((T) << 16 | ((N) & 0xffff))
  75. #else
  76. #define __SI_KILL 0
  77. #define __SI_TIMER 0
  78. #define __SI_POLL 0
  79. #define __SI_FAULT 0
  80. #define __SI_CHLD 0
  81. #define __SI_RT 0
  82. #define __SI_CODE(T,N) (N)
  83. #endif
  84. /*
  85.  * si_code values
  86.  * Digital reserves positive values for kernel-generated signals.
  87.  */
  88. #define SI_USER 0 /* sent by kill, sigsend, raise */
  89. #define SI_KERNEL 0x80 /* sent by the kernel from somewhere */
  90. #define SI_QUEUE -1 /* sent by sigqueue */
  91. #define SI_TIMER __SI_CODE(__SI_TIMER,-2) /* sent by timer expiration */
  92. #define SI_MESGQ -3 /* sent by real time mesq state change */
  93. #define SI_ASYNCIO -4 /* sent by AIO completion */
  94. #define SI_SIGIO -5 /* sent by queued SIGIO */
  95. #define SI_FROMUSER(siptr) ((siptr)->si_code <= 0)
  96. #define SI_FROMKERNEL(siptr) ((siptr)->si_code > 0)
  97. /*
  98.  * SIGILL si_codes
  99.  */
  100. #define ILL_ILLOPC (__SI_FAULT|1) /* illegal opcode */
  101. #define ILL_ILLOPN (__SI_FAULT|2) /* illegal operand */
  102. #define ILL_ILLADR (__SI_FAULT|3) /* illegal addressing mode */
  103. #define ILL_ILLTRP (__SI_FAULT|4) /* illegal trap */
  104. #define ILL_PRVOPC (__SI_FAULT|5) /* privileged opcode */
  105. #define ILL_PRVREG (__SI_FAULT|6) /* privileged register */
  106. #define ILL_COPROC (__SI_FAULT|7) /* coprocessor error */
  107. #define ILL_BADSTK (__SI_FAULT|8) /* internal stack error */
  108. #define NSIGILL 8
  109. /*
  110.  * SIGFPE si_codes
  111.  */
  112. #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
  113. #define FPE_INTOVF (__SI_FAULT|2) /* integer overflow */
  114. #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
  115. #define FPE_FLTOVF (__SI_FAULT|4) /* floating point overflow */
  116. #define FPE_FLTUND (__SI_FAULT|5) /* floating point underflow */
  117. #define FPE_FLTRES (__SI_FAULT|6) /* floating point inexact result */
  118. #define FPE_FLTINV (__SI_FAULT|7) /* floating point invalid operation */
  119. #define FPE_FLTSUB (__SI_FAULT|8) /* subscript out of range */
  120. #define NSIGFPE 8
  121. /*
  122.  * SIGSEGV si_codes
  123.  */
  124. #define SEGV_MAPERR (__SI_FAULT|1) /* address not mapped to object */
  125. #define SEGV_ACCERR (__SI_FAULT|2) /* invalid permissions for mapped object */
  126. #define NSIGSEGV 2
  127. /*
  128.  * SIGBUS si_codes
  129.  */
  130. #define BUS_ADRALN (__SI_FAULT|1) /* invalid address alignment */
  131. #define BUS_ADRERR (__SI_FAULT|2) /* non-existant physical address */
  132. #define BUS_OBJERR (__SI_FAULT|3) /* object specific hardware error */
  133. #define NSIGBUS 3
  134. /*
  135.  * SIGTRAP si_codes
  136.  */
  137. #define TRAP_BRKPT (__SI_FAULT|1) /* process breakpoint */
  138. #define TRAP_TRACE (__SI_FAULT|2) /* process trace trap */
  139. #define NSIGTRAP 2
  140. /*
  141.  * SIGCHLD si_codes
  142.  */
  143. #define CLD_EXITED (__SI_CHLD|1) /* child has exited */
  144. #define CLD_KILLED (__SI_CHLD|2) /* child was killed */
  145. #define CLD_DUMPED (__SI_CHLD|3) /* child terminated abnormally */
  146. #define CLD_TRAPPED (__SI_CHLD|4) /* traced child has trapped */
  147. #define CLD_STOPPED (__SI_CHLD|5) /* child has stopped */
  148. #define CLD_CONTINUED (__SI_CHLD|6) /* stopped child has continued */
  149. #define NSIGCHLD 6
  150. /*
  151.  * SIGPOLL si_codes
  152.  */
  153. #define POLL_IN (__SI_POLL|1) /* data input available */
  154. #define POLL_OUT (__SI_POLL|2) /* output buffers available */
  155. #define POLL_MSG (__SI_POLL|3) /* input message available */
  156. #define POLL_ERR (__SI_POLL|4) /* i/o error */
  157. #define POLL_PRI (__SI_POLL|5) /* high priority input available */
  158. #define POLL_HUP (__SI_POLL|6) /* device disconnected */
  159. #define NSIGPOLL 6
  160. /*
  161.  * sigevent definitions
  162.  * 
  163.  * It seems likely that SIGEV_THREAD will have to be handled from 
  164.  * userspace, libpthread transmuting it to SIGEV_SIGNAL, which the
  165.  * thread manager then catches and does the appropriate nonsense.
  166.  * However, everything is written out here so as to not get lost.
  167.  */
  168. #define SIGEV_SIGNAL 0 /* notify via signal */
  169. #define SIGEV_NONE 1 /* other notification: meaningless */
  170. #define SIGEV_THREAD 2 /* deliver via thread creation */
  171. #define SIGEV_MAX_SIZE 64
  172. #define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
  173. typedef struct sigevent {
  174. sigval_t sigev_value;
  175. int sigev_signo;
  176. int sigev_notify;
  177. union {
  178. int _pad[SIGEV_PAD_SIZE];
  179. struct {
  180. void (*_function)(sigval_t);
  181. void *_attribute; /* really pthread_attr_t */
  182. } _sigev_thread;
  183. } _sigev_un;
  184. } sigevent_t;
  185. #define sigev_notify_function _sigev_un._sigev_thread._function
  186. #define sigev_notify_attributes _sigev_un._sigev_thread._attribute
  187. #ifdef __KERNEL__
  188. #include <linux/string.h>
  189. static inline void copy_siginfo(siginfo_t *to, siginfo_t *from)
  190. {
  191. if (from->si_code < 0)
  192. memcpy(to, from, sizeof(siginfo_t));
  193. else
  194. /* _sigchld is currently the largest know union member */
  195. memcpy(to, from, 3*sizeof(int) + sizeof(from->_sifields._sigchld));
  196. }
  197. extern int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from);
  198. #endif /* __KERNEL__ */
  199. #endif