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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_SIGNAL_H
  2. #define _ASM_IA64_SIGNAL_H
  3. /*
  4.  * Copyright (C) 1998-2001 Hewlett-Packard Co
  5.  * David Mosberger-Tang <davidm@hpl.hp.com>
  6.  *
  7.  * Unfortunately, this file is being included by bits/signal.h in
  8.  * glibc-2.x.  Hence the #ifdef __KERNEL__ ugliness.
  9.  */
  10. #define SIGHUP  1
  11. #define SIGINT  2
  12. #define SIGQUIT  3
  13. #define SIGILL  4
  14. #define SIGTRAP  5
  15. #define SIGABRT  6
  16. #define SIGIOT  6
  17. #define SIGBUS  7
  18. #define SIGFPE  8
  19. #define SIGKILL  9
  20. #define SIGUSR1 10
  21. #define SIGSEGV 11
  22. #define SIGUSR2 12
  23. #define SIGPIPE 13
  24. #define SIGALRM 14
  25. #define SIGTERM 15
  26. #define SIGSTKFLT 16
  27. #define SIGCHLD 17
  28. #define SIGCONT 18
  29. #define SIGSTOP 19
  30. #define SIGTSTP 20
  31. #define SIGTTIN 21
  32. #define SIGTTOU 22
  33. #define SIGURG 23
  34. #define SIGXCPU 24
  35. #define SIGXFSZ 25
  36. #define SIGVTALRM 26
  37. #define SIGPROF 27
  38. #define SIGWINCH 28
  39. #define SIGIO 29
  40. #define SIGPOLL SIGIO
  41. /*
  42. #define SIGLOST 29
  43. */
  44. #define SIGPWR 30
  45. #define SIGSYS 31
  46. /* signal 31 is no longer "unused", but the SIGUNUSED macro remains for backwards compatibility */
  47. #define SIGUNUSED 31
  48. /* These should not be considered constants from userland.  */
  49. #define SIGRTMIN 32
  50. #define SIGRTMAX (_NSIG-1)
  51. /*
  52.  * SA_FLAGS values:
  53.  *
  54.  * SA_ONSTACK indicates that a registered stack_t will be used.
  55.  * SA_INTERRUPT is a no-op, but left due to historical reasons.
  56.  * SA_RESTART flag to get restarting signals (which were the default long ago)
  57.  * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
  58.  * SA_RESETHAND clears the handler when the signal is delivered.
  59.  * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
  60.  * SA_NODEFER prevents the current signal from being masked in the handler.
  61.  *
  62.  * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
  63.  * Unix names RESETHAND and NODEFER respectively.
  64.  */
  65. #define SA_NOCLDSTOP 0x00000001
  66. #define SA_NOCLDWAIT 0x00000002 /* not supported yet */
  67. #define SA_SIGINFO 0x00000004
  68. #define SA_ONSTACK 0x08000000
  69. #define SA_RESTART 0x10000000
  70. #define SA_NODEFER 0x40000000
  71. #define SA_RESETHAND 0x80000000
  72. #define SA_NOMASK SA_NODEFER
  73. #define SA_ONESHOT SA_RESETHAND
  74. #define SA_INTERRUPT 0x20000000 /* dummy -- ignored */
  75. #define SA_RESTORER 0x04000000
  76. /*
  77.  * sigaltstack controls
  78.  */
  79. #define SS_ONSTACK 1
  80. #define SS_DISABLE 2
  81. /*
  82.  * The minimum stack size needs to be fairly large because we want to
  83.  * be sure that an app compiled for today's CPUs will continue to run
  84.  * on all future CPU models.  The CPU model matters because the signal
  85.  * frame needs to have space for the complete machine state, including
  86.  * all physical stacked registers.  The number of physical stacked
  87.  * registers is CPU model dependent, but given that the width of
  88.  * ar.rsc.loadrs is 14 bits, we can assume that they'll never take up
  89.  * more than 16KB of space.
  90.  */
  91. #define MINSIGSTKSZ 131027 /* min. stack size for sigaltstack() */
  92. #define SIGSTKSZ 262144 /* default stack size for sigaltstack() */
  93. #ifdef __KERNEL__
  94. #define _NSIG 64
  95. #define _NSIG_BPW 64
  96. #define _NSIG_WORDS (_NSIG / _NSIG_BPW)
  97. /*
  98.  * These values of sa_flags are used only by the kernel as part of the
  99.  * irq handling routines.
  100.  *
  101.  * SA_INTERRUPT is also used by the irq handling routines.
  102.  * SA_SHIRQ is for shared interrupt support on PCI and EISA.
  103.  */
  104. #define SA_PROBE SA_ONESHOT
  105. #define SA_SAMPLE_RANDOM SA_RESTART
  106. #define SA_SHIRQ 0x04000000
  107. #define SA_PERCPU_IRQ 0x02000000
  108. #endif /* __KERNEL__ */
  109. #define SIG_BLOCK          0 /* for blocking signals */
  110. #define SIG_UNBLOCK        1 /* for unblocking signals */
  111. #define SIG_SETMASK        2 /* for setting the signal mask */
  112. #define SIG_DFL ((__sighandler_t)0) /* default signal handling */
  113. #define SIG_IGN ((__sighandler_t)1) /* ignore signal */
  114. #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */
  115. # ifndef __ASSEMBLY__
  116. #  include <linux/types.h>
  117. /* Avoid too many header ordering problems.  */
  118. struct siginfo;
  119. /* Type of a signal handler.  */
  120. typedef void (*__sighandler_t)(int);
  121. typedef struct sigaltstack {
  122. void *ss_sp;
  123. int ss_flags;
  124. size_t ss_size;
  125. } stack_t;
  126. #ifdef __KERNEL__
  127. /* Most things should be clean enough to redefine this at will, if care
  128.    is taken to make libc match.  */
  129. typedef unsigned long old_sigset_t;
  130. typedef struct {
  131. unsigned long sig[_NSIG_WORDS];
  132. } sigset_t;
  133. struct sigaction {
  134. __sighandler_t sa_handler;
  135. unsigned long sa_flags;
  136. sigset_t sa_mask; /* mask last for extensibility */
  137. };
  138. struct k_sigaction {
  139. struct sigaction sa;
  140. };
  141. #  include <asm/sigcontext.h>
  142. #endif /* __KERNEL__ */
  143. # endif /* !__ASSEMBLY__ */
  144. #endif /* _ASM_IA64_SIGNAL_H */