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

嵌入式Linux

开发平台:

Unix_Linux

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