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

嵌入式Linux

开发平台:

Unix_Linux

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