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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: signal.h,v 1.9 1999/09/06 08:22:11 jj Exp $ */
  2. #ifndef _ASMSPARC64_SIGNAL_H
  3. #define _ASMSPARC64_SIGNAL_H
  4. #include <asm/sigcontext.h>
  5. #ifdef __KERNEL__
  6. #ifndef __ASSEMBLY__
  7. #include <linux/personality.h>
  8. #include <linux/types.h>
  9. #endif
  10. #endif
  11. /* On the Sparc the signal handlers get passed a 'sub-signal' code
  12.  * for certain signal types, which we document here.
  13.  */
  14. #define SIGHUP  1
  15. #define SIGINT  2
  16. #define SIGQUIT  3
  17. #define SIGILL  4
  18. #define    SUBSIG_STACK       0
  19. #define    SUBSIG_ILLINST     2
  20. #define    SUBSIG_PRIVINST    3
  21. #define    SUBSIG_BADTRAP(t)  (0x80 + (t))
  22. #define SIGTRAP  5
  23. #define SIGABRT  6
  24. #define SIGIOT  6
  25. #define SIGEMT           7
  26. #define    SUBSIG_TAG    10
  27. #define SIGFPE  8
  28. #define    SUBSIG_FPDISABLED     0x400
  29. #define    SUBSIG_FPERROR        0x404
  30. #define    SUBSIG_FPINTOVFL      0x001
  31. #define    SUBSIG_FPSTSIG        0x002
  32. #define    SUBSIG_IDIVZERO       0x014
  33. #define    SUBSIG_FPINEXACT      0x0c4
  34. #define    SUBSIG_FPDIVZERO      0x0c8
  35. #define    SUBSIG_FPUNFLOW       0x0cc
  36. #define    SUBSIG_FPOPERROR      0x0d0
  37. #define    SUBSIG_FPOVFLOW       0x0d4
  38. #define SIGKILL  9
  39. #define SIGBUS          10
  40. #define    SUBSIG_BUSTIMEOUT    1
  41. #define    SUBSIG_ALIGNMENT     2
  42. #define    SUBSIG_MISCERROR     5
  43. #define SIGSEGV 11
  44. #define    SUBSIG_NOMAPPING     3
  45. #define    SUBSIG_PROTECTION    4
  46. #define    SUBSIG_SEGERROR      5
  47. #define SIGSYS 12
  48. #define SIGPIPE 13
  49. #define SIGALRM 14
  50. #define SIGTERM 15
  51. #define SIGURG          16
  52. /* SunOS values which deviate from the Linux/i386 ones */
  53. #define SIGSTOP 17
  54. #define SIGTSTP 18
  55. #define SIGCONT 19
  56. #define SIGCHLD 20
  57. #define SIGTTIN 21
  58. #define SIGTTOU 22
  59. #define SIGIO 23
  60. #define SIGPOLL SIGIO   /* SysV name for SIGIO */
  61. #define SIGXCPU 24
  62. #define SIGXFSZ 25
  63. #define SIGVTALRM 26
  64. #define SIGPROF 27
  65. #define SIGWINCH 28
  66. #define SIGLOST 29
  67. #define SIGPWR SIGLOST
  68. #define SIGUSR1 30
  69. #define SIGUSR2 31
  70. /* Most things should be clean enough to redefine this at will, if care
  71.    is taken to make libc match.  */
  72. #define __OLD_NSIG 32
  73. #define __NEW_NSIG      64
  74. #define _NSIG_BPW      64
  75. #define _NSIG_WORDS    (__NEW_NSIG / _NSIG_BPW)
  76. #define _NSIG_BPW32    32
  77. #define _NSIG_WORDS32  (__NEW_NSIG / _NSIG_BPW32)
  78. #define SIGRTMIN       32
  79. #define SIGRTMAX       (__NEW_NSIG - 1)
  80. #if defined(__KERNEL__) || defined(__WANT_POSIX1B_SIGNALS__)
  81. #define _NSIG __NEW_NSIG
  82. #define __new_sigset_t sigset_t
  83. #define __new_sigset_t32 sigset_t32
  84. #define __new_sigaction sigaction
  85. #define __new_sigaction32 sigaction32
  86. #define __old_sigset_t old_sigset_t
  87. #define __old_sigset_t32 old_sigset_t32
  88. #define __old_sigaction old_sigaction
  89. #define __old_sigaction32 old_sigaction32
  90. #else
  91. #define _NSIG __OLD_NSIG
  92. #define NSIG _NSIG
  93. #define __old_sigset_t sigset_t
  94. #define __old_sigset_t32 sigset_t32
  95. #define __old_sigaction sigaction
  96. #define __old_sigaction32 sigaction32
  97. #endif
  98. #ifndef __ASSEMBLY__
  99. typedef unsigned long __old_sigset_t;            /* at least 32 bits */
  100. typedef unsigned int __old_sigset_t32;
  101. typedef struct {
  102.        unsigned long sig[_NSIG_WORDS];
  103. } __new_sigset_t;
  104. typedef struct {
  105.        unsigned int sig[_NSIG_WORDS32];
  106. } __new_sigset_t32;
  107. /* A SunOS sigstack */
  108. struct sigstack {
  109. /* XXX 32-bit pointers pinhead XXX */
  110. char *the_stack;
  111. int   cur_status;
  112. };
  113. /* Sigvec flags */
  114. #define SV_SSTACK    1     /* This signal handler should use sig-stack */
  115. #define SV_INTR      2     /* Sig return should not restart system call */
  116. #define SV_RESET     4     /* Set handler to SIG_DFL upon taken signal */
  117. #define SV_IGNCHILD  8     /* Do not send SIGCHLD */
  118. /*
  119.  * sa_flags values: SA_STACK is not currently supported, but will allow the
  120.  * usage of signal stacks by using the (now obsolete) sa_restorer field in
  121.  * the sigaction structure as a stack pointer. This is now possible due to
  122.  * the changes in signal handling. LBT 010493.
  123.  * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the
  124.  * SA_RESTART flag to get restarting signals (which were the default long ago)
  125.  * SA_SHIRQ flag is for shared interrupt support on PCI and EISA.
  126.  */
  127. #define SA_NOCLDSTOP SV_IGNCHILD
  128. #define SA_STACK SV_SSTACK
  129. #define SA_ONSTACK SV_SSTACK
  130. #define SA_RESTART SV_INTR
  131. #define SA_ONESHOT SV_RESET
  132. #define SA_INTERRUPT 0x10
  133. #define SA_NOMASK 0x20
  134. #define SA_SHIRQ 0x40
  135. #define SA_NOCLDWAIT    0x100 /* not supported yet */
  136. #define SA_SIGINFO      0x200
  137. #define SIG_BLOCK          0x01 /* for blocking signals */
  138. #define SIG_UNBLOCK        0x02 /* for unblocking signals */
  139. #define SIG_SETMASK        0x04 /* for setting the signal mask */
  140. /* 
  141.  * sigaltstack controls
  142.  */
  143. #define SS_ONSTACK 1
  144. #define SS_DISABLE 2
  145. #define MINSIGSTKSZ 4096
  146. #define SIGSTKSZ 16384
  147. #ifdef __KERNEL__
  148. /*
  149.  * These values of sa_flags are used only by the kernel as part of the
  150.  * irq handling routines.
  151.  *
  152.  * SA_INTERRUPT is also used by the irq handling routines.
  153.  *
  154.  * DJHR
  155.  * SA_STATIC_ALLOC is used for the SPARC system to indicate that this
  156.  * interrupt handler's irq structure should be statically allocated
  157.  * by the request_irq routine.
  158.  * The alternative is that arch/sparc/kernel/irq.c has carnal knowledge
  159.  * of interrupt usage and that sucks. Also without a flag like this
  160.  * it may be possible for the free_irq routine to attempt to free
  161.  * statically allocated data.. which is NOT GOOD.
  162.  *
  163.  */
  164. #define SA_PROBE SA_ONESHOT
  165. #define SA_SAMPLE_RANDOM SA_RESTART
  166. #define SA_STATIC_ALLOC 0x80
  167. #endif
  168. /* Type of a signal handler.  */
  169. #ifdef __KERNEL__
  170. typedef void (*__sighandler_t)(int, struct sigcontext *);
  171. #else
  172. typedef void (*__sighandler_t)(int);
  173. #endif
  174. #define SIG_DFL ((__sighandler_t)0) /* default signal handling */
  175. #define SIG_IGN ((__sighandler_t)1) /* ignore signal */
  176. #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */
  177. struct __new_sigaction {
  178. __sighandler_t sa_handler;
  179. unsigned long sa_flags;
  180. void  (*sa_restorer)(void);     /* not used by Linux/SPARC yet */
  181. __new_sigset_t sa_mask;
  182. };
  183. struct __new_sigaction32 {
  184. unsigned sa_handler;
  185. unsigned int     sa_flags;
  186. unsigned sa_restorer;     /* not used by Linux/SPARC yet */
  187. __new_sigset_t32  sa_mask;
  188. };
  189. #ifdef __KERNEL__
  190. struct k_sigaction {
  191. struct __new_sigaction  sa;
  192. void *ka_restorer;
  193. };
  194. #endif
  195. struct __old_sigaction {
  196. __sighandler_t   sa_handler;
  197. __old_sigset_t   sa_mask;
  198. unsigned long    sa_flags;
  199. void  (*sa_restorer)(void);     /* not used by Linux/SPARC yet */
  200. };
  201. struct __old_sigaction32 {
  202. unsigned sa_handler;
  203. __old_sigset_t32   sa_mask;
  204. unsigned int     sa_flags;
  205. unsigned sa_restorer;     /* not used by Linux/SPARC yet */
  206. };
  207. typedef struct sigaltstack {
  208. void *ss_sp;
  209. int ss_flags;
  210. size_t ss_size;
  211. } stack_t;
  212. #ifdef __KERNEL__
  213. typedef struct sigaltstack32 {
  214. u32 ss_sp;
  215. int ss_flags;
  216. __kernel_size_t32 ss_size;
  217. } stack_t32;
  218. #endif
  219. #endif /* !(__ASSEMBLY__) */
  220. #endif /* !(_ASMSPARC64_SIGNAL_H) */