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

嵌入式Linux

开发平台:

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