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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: signal.h,v 1.35 1999/09/06 08:22:04 jj Exp $ */
  2. #ifndef _ASMSPARC_SIGNAL_H
  3. #define _ASMSPARC_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.  */
  73. #define __OLD_NSIG 32
  74. #define __NEW_NSIG 64
  75. #define _NSIG_BPW 32
  76. #define _NSIG_WORDS (__NEW_NSIG / _NSIG_BPW)
  77. #define SIGRTMIN 32
  78. #define SIGRTMAX (__NEW_NSIG - 1)
  79. #if defined(__KERNEL__) || defined(__WANT_POSIX1B_SIGNALS__)
  80. #define _NSIG __NEW_NSIG
  81. #define __new_sigset_t sigset_t
  82. #define __new_sigaction sigaction
  83. #define __old_sigset_t old_sigset_t
  84. #define __old_sigaction old_sigaction
  85. #else
  86. #define _NSIG __OLD_NSIG
  87. #define __old_sigset_t sigset_t
  88. #define __old_sigaction sigaction
  89. #endif
  90. #ifndef __ASSEMBLY__
  91. typedef unsigned long __old_sigset_t;
  92. typedef struct {
  93. unsigned long sig[_NSIG_WORDS];
  94. } __new_sigset_t;
  95. /* A SunOS sigstack */
  96. struct sigstack {
  97. char *the_stack;
  98. int   cur_status;
  99. };
  100. /* Sigvec flags */
  101. #define SV_SSTACK    1     /* This signal handler should use sig-stack */
  102. #define SV_INTR      2     /* Sig return should not restart system call */
  103. #define SV_RESET     4     /* Set handler to SIG_DFL upon taken signal */
  104. #define SV_IGNCHILD  8     /* Do not send SIGCHLD */
  105. /*
  106.  * sa_flags values: SA_STACK is not currently supported, but will allow the
  107.  * usage of signal stacks by using the (now obsolete) sa_restorer field in
  108.  * the sigaction structure as a stack pointer. This is now possible due to
  109.  * the changes in signal handling. LBT 010493.
  110.  * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the
  111.  * SA_RESTART flag to get restarting signals (which were the default long ago)
  112.  * SA_SHIRQ flag is for shared interrupt support on PCI and EISA.
  113.  */
  114. #define SA_NOCLDSTOP SV_IGNCHILD
  115. #define SA_STACK SV_SSTACK
  116. #define SA_ONSTACK SV_SSTACK
  117. #define SA_RESTART SV_INTR
  118. #define SA_ONESHOT SV_RESET
  119. #define SA_INTERRUPT 0x10
  120. #define SA_NOMASK 0x20
  121. #define SA_SHIRQ 0x40
  122. #define SA_NOCLDWAIT 0x100 /* not supported yet */
  123. #define SA_SIGINFO 0x200
  124. #define SIG_BLOCK          0x01 /* for blocking signals */
  125. #define SIG_UNBLOCK        0x02 /* for unblocking signals */
  126. #define SIG_SETMASK        0x04 /* for setting the signal mask */
  127. /* 
  128.  * sigaltstack controls
  129.  */
  130. #define SS_ONSTACK 1
  131. #define SS_DISABLE 2
  132. #define MINSIGSTKSZ 4096
  133. #define SIGSTKSZ 16384
  134. #ifdef __KERNEL__
  135. /*
  136.  * These values of sa_flags are used only by the kernel as part of the
  137.  * irq handling routines.
  138.  *
  139.  * SA_INTERRUPT is also used by the irq handling routines.
  140.  *
  141.  * DJHR
  142.  * SA_STATIC_ALLOC is used for the SPARC system to indicate that this
  143.  * interrupt handler's irq structure should be statically allocated
  144.  * by the request_irq routine.
  145.  * The alternative is that arch/sparc/kernel/irq.c has carnal knowledge
  146.  * of interrupt usage and that sucks. Also without a flag like this
  147.  * it may be possible for the free_irq routine to attempt to free
  148.  * statically allocated data.. which is NOT GOOD.
  149.  *
  150.  */
  151. #define SA_PROBE SA_ONESHOT
  152. #define SA_SAMPLE_RANDOM SA_RESTART
  153. #define SA_STATIC_ALLOC 0x80
  154. #endif
  155. /* Type of a signal handler.  */
  156. #ifdef __KERNEL__
  157. typedef void (*__sighandler_t)(int, int, struct sigcontext *, char *);
  158. #else
  159. typedef void (*__sighandler_t)(int);
  160. #endif
  161. #define SIG_DFL ((__sighandler_t)0) /* default signal handling */
  162. #define SIG_IGN ((__sighandler_t)1) /* ignore signal */
  163. #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */
  164. struct __new_sigaction {
  165. __sighandler_t sa_handler;
  166. unsigned long sa_flags;
  167. void (*sa_restorer)(void); /* Not used by Linux/SPARC */
  168. __new_sigset_t sa_mask;
  169. };
  170. #ifdef __KERNEL__
  171. struct k_sigaction {
  172. struct __new_sigaction sa;
  173. void *ka_restorer;
  174. };
  175. #endif
  176. struct __old_sigaction {
  177. __sighandler_t sa_handler;
  178. __old_sigset_t sa_mask;
  179. unsigned long sa_flags;
  180. void (*sa_restorer) (void); /* not used by Linux/SPARC */
  181. };
  182. typedef struct sigaltstack {
  183. void *ss_sp;
  184. int ss_flags;
  185. size_t ss_size;
  186. } stack_t;
  187. #endif /* !(__ASSEMBLY__) */
  188. #endif /* !(_ASMSPARC_SIGNAL_H) */