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

Linux/Unix编程

开发平台:

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_TKILL -6 /* sent by tkill system call */
  96. #define SI_FROMUSER(siptr) ((siptr)->si_code <= 0)
  97. #define SI_FROMKERNEL(siptr) ((siptr)->si_code > 0)
  98. /*
  99.  * SIGILL si_codes
  100.  */
  101. #define ILL_ILLOPC (__SI_FAULT|1) /* illegal opcode */
  102. #define ILL_ILLOPN (__SI_FAULT|2) /* illegal operand */
  103. #define ILL_ILLADR (__SI_FAULT|3) /* illegal addressing mode */
  104. #define ILL_ILLTRP (__SI_FAULT|4) /* illegal trap */
  105. #define ILL_PRVOPC (__SI_FAULT|5) /* privileged opcode */
  106. #define ILL_PRVREG (__SI_FAULT|6) /* privileged register */
  107. #define ILL_COPROC (__SI_FAULT|7) /* coprocessor error */
  108. #define ILL_BADSTK (__SI_FAULT|8) /* internal stack error */
  109. #define NSIGILL 8
  110. /*
  111.  * SIGFPE si_codes
  112.  */
  113. #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
  114. #define FPE_INTOVF (__SI_FAULT|2) /* integer overflow */
  115. #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
  116. #define FPE_FLTOVF (__SI_FAULT|4) /* floating point overflow */
  117. #define FPE_FLTUND (__SI_FAULT|5) /* floating point underflow */
  118. #define FPE_FLTRES (__SI_FAULT|6) /* floating point inexact result */
  119. #define FPE_FLTINV (__SI_FAULT|7) /* floating point invalid operation */
  120. #define FPE_FLTSUB (__SI_FAULT|8) /* subscript out of range */
  121. #define NSIGFPE 8
  122. /*
  123.  * SIGSEGV si_codes
  124.  */
  125. #define SEGV_MAPERR (__SI_FAULT|1) /* address not mapped to object */
  126. #define SEGV_ACCERR (__SI_FAULT|2) /* invalid permissions for mapped object */
  127. #define NSIGSEGV 2
  128. /*
  129.  * SIGBUS si_codes
  130.  */
  131. #define BUS_ADRALN (__SI_FAULT|1) /* invalid address alignment */
  132. #define BUS_ADRERR (__SI_FAULT|2) /* non-existant physical address */
  133. #define BUS_OBJERR (__SI_FAULT|3) /* object specific hardware error */
  134. #define NSIGBUS 3
  135. /*
  136.  * SIGTRAP si_codes
  137.  */
  138. #define TRAP_BRKPT (__SI_FAULT|1) /* process breakpoint */
  139. #define TRAP_TRACE (__SI_FAULT|2) /* process trace trap */
  140. #define NSIGTRAP 2
  141. /*
  142.  * SIGCHLD si_codes
  143.  */
  144. #define CLD_EXITED (__SI_CHLD|1) /* child has exited */
  145. #define CLD_KILLED (__SI_CHLD|2) /* child was killed */
  146. #define CLD_DUMPED (__SI_CHLD|3) /* child terminated abnormally */
  147. #define CLD_TRAPPED (__SI_CHLD|4) /* traced child has trapped */
  148. #define CLD_STOPPED (__SI_CHLD|5) /* child has stopped */
  149. #define CLD_CONTINUED (__SI_CHLD|6) /* stopped child has continued */
  150. #define NSIGCHLD 6
  151. /*
  152.  * SIGPOLL si_codes
  153.  */
  154. #define POLL_IN (__SI_POLL|1) /* data input available */
  155. #define POLL_OUT (__SI_POLL|2) /* output buffers available */
  156. #define POLL_MSG (__SI_POLL|3) /* input message available */
  157. #define POLL_ERR (__SI_POLL|4) /* i/o error */
  158. #define POLL_PRI (__SI_POLL|5) /* high priority input available */
  159. #define POLL_HUP (__SI_POLL|6) /* device disconnected */
  160. #define NSIGPOLL 6
  161. /*
  162.  * sigevent definitions
  163.  * 
  164.  * It seems likely that SIGEV_THREAD will have to be handled from 
  165.  * userspace, libpthread transmuting it to SIGEV_SIGNAL, which the
  166.  * thread manager then catches and does the appropriate nonsense.
  167.  * However, everything is written out here so as to not get lost.
  168.  */
  169. #define SIGEV_SIGNAL 0 /* notify via signal */
  170. #define SIGEV_NONE 1 /* other notification: meaningless */
  171. #define SIGEV_THREAD 2 /* deliver via thread creation */
  172. #define SIGEV_MAX_SIZE 64
  173. #define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
  174. typedef struct sigevent {
  175. sigval_t sigev_value;
  176. int sigev_signo;
  177. int sigev_notify;
  178. union {
  179. int _pad[SIGEV_PAD_SIZE];
  180. struct {
  181. void (*_function)(sigval_t);
  182. void *_attribute; /* really pthread_attr_t */
  183. } _sigev_thread;
  184. } _sigev_un;
  185. } sigevent_t;
  186. #define sigev_notify_function _sigev_un._sigev_thread._function
  187. #define sigev_notify_attributes _sigev_un._sigev_thread._attribute
  188. #ifdef __KERNEL__
  189. #include <linux/string.h>
  190. static inline void copy_siginfo(siginfo_t *to, siginfo_t *from)
  191. {
  192. if (from->si_code < 0)
  193. memcpy(to, from, sizeof(siginfo_t));
  194. else
  195. /* _sigchld is currently the largest know union member */
  196. memcpy(to, from, 3*sizeof(int) + sizeof(from->_sifields._sigchld));
  197. }
  198. extern int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from);
  199. #endif /* __KERNEL__ */
  200. #endif