signal-defs.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef __ASM_GENERIC_SIGNAL_DEFS_H
  3. #define __ASM_GENERIC_SIGNAL_DEFS_H
  4. #include <linux/compiler.h>
  5. /*
  6. * SA_FLAGS values:
  7. *
  8. * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
  9. * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
  10. * SA_SIGINFO delivers the signal with SIGINFO structs.
  11. * SA_ONSTACK indicates that a registered stack_t will be used.
  12. * SA_RESTART flag to get restarting signals (which were the default long ago)
  13. * SA_NODEFER prevents the current signal from being masked in the handler.
  14. * SA_RESETHAND clears the handler when the signal is delivered.
  15. * SA_UNSUPPORTED is a flag bit that will never be supported. Kernels from
  16. * before the introduction of SA_UNSUPPORTED did not clear unknown bits from
  17. * sa_flags when read using the oldact argument to sigaction and rt_sigaction,
  18. * so this bit allows flag bit support to be detected from userspace while
  19. * allowing an old kernel to be distinguished from a kernel that supports every
  20. * flag bit.
  21. * SA_EXPOSE_TAGBITS exposes an architecture-defined set of tag bits in
  22. * siginfo.si_addr.
  23. *
  24. * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
  25. * Unix names RESETHAND and NODEFER respectively.
  26. */
  27. #ifndef SA_NOCLDSTOP
  28. #define SA_NOCLDSTOP 0x00000001
  29. #endif
  30. #ifndef SA_NOCLDWAIT
  31. #define SA_NOCLDWAIT 0x00000002
  32. #endif
  33. #ifndef SA_SIGINFO
  34. #define SA_SIGINFO 0x00000004
  35. #endif
  36. /* 0x00000008 used on alpha, mips, parisc */
  37. /* 0x00000010 used on alpha, parisc */
  38. /* 0x00000020 used on alpha, parisc, sparc */
  39. /* 0x00000040 used on alpha, parisc */
  40. /* 0x00000080 used on parisc */
  41. /* 0x00000100 used on sparc */
  42. /* 0x00000200 used on sparc */
  43. #define SA_UNSUPPORTED 0x00000400
  44. #define SA_EXPOSE_TAGBITS 0x00000800
  45. /* 0x00010000 used on mips */
  46. /* 0x00800000 used for internal SA_IMMUTABLE */
  47. /* 0x01000000 used on x86 */
  48. /* 0x02000000 used on x86 */
  49. /*
  50. * New architectures should not define the obsolete
  51. * SA_RESTORER 0x04000000
  52. */
  53. #ifndef SA_ONSTACK
  54. #define SA_ONSTACK 0x08000000
  55. #endif
  56. #ifndef SA_RESTART
  57. #define SA_RESTART 0x10000000
  58. #endif
  59. #ifndef SA_NODEFER
  60. #define SA_NODEFER 0x40000000
  61. #endif
  62. #ifndef SA_RESETHAND
  63. #define SA_RESETHAND 0x80000000
  64. #endif
  65. #define SA_NOMASK SA_NODEFER
  66. #define SA_ONESHOT SA_RESETHAND
  67. #ifndef SIG_BLOCK
  68. #define SIG_BLOCK 0 /* for blocking signals */
  69. #endif
  70. #ifndef SIG_UNBLOCK
  71. #define SIG_UNBLOCK 1 /* for unblocking signals */
  72. #endif
  73. #ifndef SIG_SETMASK
  74. #define SIG_SETMASK 2 /* for setting the signal mask */
  75. #endif
  76. #ifndef __ASSEMBLY__
  77. typedef void __signalfn_t(int);
  78. typedef __signalfn_t __user *__sighandler_t;
  79. typedef void __restorefn_t(void);
  80. typedef __restorefn_t __user *__sigrestore_t;
  81. #define SIG_DFL ((__force __sighandler_t)0) /* default signal handling */
  82. #define SIG_IGN ((__force __sighandler_t)1) /* ignore signal */
  83. #define SIG_ERR ((__force __sighandler_t)-1) /* error return from signal */
  84. #endif
  85. #endif /* __ASM_GENERIC_SIGNAL_DEFS_H */