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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_SIGNAL_H
  2. #define __ASM_SH_SIGNAL_H
  3. #include <linux/types.h>
  4. /* Avoid too many header ordering problems.  */
  5. struct siginfo;
  6. #define _NSIG 64
  7. #define _NSIG_BPW 32
  8. #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
  9. typedef unsigned long old_sigset_t; /* at least 32 bits */
  10. typedef struct {
  11. unsigned long sig[_NSIG_WORDS];
  12. } sigset_t;
  13. #define SIGHUP  1
  14. #define SIGINT  2
  15. #define SIGQUIT  3
  16. #define SIGILL  4
  17. #define SIGTRAP  5
  18. #define SIGABRT  6
  19. #define SIGIOT  6
  20. #define SIGBUS  7
  21. #define SIGFPE  8
  22. #define SIGKILL  9
  23. #define SIGUSR1 10
  24. #define SIGSEGV 11
  25. #define SIGUSR2 12
  26. #define SIGPIPE 13
  27. #define SIGALRM 14
  28. #define SIGTERM 15
  29. #define SIGSTKFLT 16
  30. #define SIGCHLD 17
  31. #define SIGCONT 18
  32. #define SIGSTOP 19
  33. #define SIGTSTP 20
  34. #define SIGTTIN 21
  35. #define SIGTTOU 22
  36. #define SIGURG 23
  37. #define SIGXCPU 24
  38. #define SIGXFSZ 25
  39. #define SIGVTALRM 26
  40. #define SIGPROF 27
  41. #define SIGWINCH 28
  42. #define SIGIO 29
  43. #define SIGPOLL SIGIO
  44. /*
  45. #define SIGLOST 29
  46. */
  47. #define SIGPWR 30
  48. #define SIGSYS 31
  49. #define SIGUNUSED 31
  50. /* These should not be considered constants from userland.  */
  51. #define SIGRTMIN 32
  52. #define SIGRTMAX (_NSIG-1)
  53. /*
  54.  * SA_FLAGS values:
  55.  *
  56.  * SA_ONSTACK indicates that a registered stack_t will be used.
  57.  * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the
  58.  * SA_RESTART flag to get restarting signals (which were the default long ago)
  59.  * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
  60.  * SA_RESETHAND clears the handler when the signal is delivered.
  61.  * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
  62.  * SA_NODEFER prevents the current signal from being masked in the handler.
  63.  *
  64.  * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
  65.  * Unix names RESETHAND and NODEFER respectively.
  66.  */
  67. #define SA_NOCLDSTOP 0x00000001
  68. #define SA_NOCLDWAIT 0x00000002 /* not supported yet */
  69. #define SA_SIGINFO 0x00000004
  70. #define SA_ONSTACK 0x08000000
  71. #define SA_RESTART 0x10000000
  72. #define SA_NODEFER 0x40000000
  73. #define SA_RESETHAND 0x80000000
  74. #define SA_NOMASK SA_NODEFER
  75. #define SA_ONESHOT SA_RESETHAND
  76. #define SA_INTERRUPT 0x20000000 /* dummy -- ignored */
  77. #define SA_RESTORER 0x04000000
  78. /* 
  79.  * sigaltstack controls
  80.  */
  81. #define SS_ONSTACK 1
  82. #define SS_DISABLE 2
  83. #define MINSIGSTKSZ 2048
  84. #define SIGSTKSZ 8192
  85. #ifdef __KERNEL__
  86. /*
  87.  * These values of sa_flags are used only by the kernel as part of the
  88.  * irq handling routines.
  89.  *
  90.  * SA_INTERRUPT is also used by the irq handling routines.
  91.  * SA_SHIRQ is for shared interrupt support on PCI and EISA.
  92.  */
  93. #define SA_PROBE SA_ONESHOT
  94. #define SA_SAMPLE_RANDOM SA_RESTART
  95. #define SA_SHIRQ 0x04000000
  96. #endif
  97. #define SIG_BLOCK          0 /* for blocking signals */
  98. #define SIG_UNBLOCK        1 /* for unblocking signals */
  99. #define SIG_SETMASK        2 /* for setting the signal mask */
  100. /* Type of a signal handler.  */
  101. typedef void (*__sighandler_t)(int);
  102. #define SIG_DFL ((__sighandler_t)0) /* default signal handling */
  103. #define SIG_IGN ((__sighandler_t)1) /* ignore signal */
  104. #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */
  105. #ifdef __KERNEL__
  106. struct old_sigaction {
  107. __sighandler_t sa_handler;
  108. old_sigset_t sa_mask;
  109. unsigned long sa_flags;
  110. void (*sa_restorer)(void);
  111. };
  112. struct sigaction {
  113. __sighandler_t sa_handler;
  114. unsigned long sa_flags;
  115. void (*sa_restorer)(void);
  116. sigset_t sa_mask; /* mask last for extensibility */
  117. };
  118. struct k_sigaction {
  119. struct sigaction sa;
  120. };
  121. #else
  122. /* Here we must cater to libcs that poke about in kernel headers.  */
  123. struct sigaction {
  124. union {
  125.   __sighandler_t _sa_handler;
  126.   void (*_sa_sigaction)(int, struct siginfo *, void *);
  127. } _u;
  128. sigset_t sa_mask;
  129. unsigned long sa_flags;
  130. void (*sa_restorer)(void);
  131. };
  132. #define sa_handler _u._sa_handler
  133. #define sa_sigaction _u._sa_sigaction
  134. #endif /* __KERNEL__ */
  135. typedef struct sigaltstack {
  136. void *ss_sp;
  137. int ss_flags;
  138. size_t ss_size;
  139. } stack_t;
  140. #ifdef __KERNEL__
  141. #include <asm/sigcontext.h>
  142. #define sigmask(sig) (1UL << ((sig) - 1))
  143. #endif /* __KERNEL__ */
  144. #endif /* __ASM_SH_SIGNAL_H */