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

嵌入式Linux

开发平台:

Unix_Linux

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