signal.h 325 B

123456789101112131415
  1. #ifndef _LINUX_SIGNAL_H
  2. #define _LINUX_SIGNAL_H
  3. #include <asm/signal.h>
  4. #include <asm/siginfo.h>
  5. #define SS_ONSTACK 1
  6. #define SS_DISABLE 2
  7. /* bit-flags */
  8. #define SS_AUTODISARM (1U << 31) /* disable sas during sighandling */
  9. /* mask for all SS_xxx flags */
  10. #define SS_FLAG_BITS SS_AUTODISARM
  11. #endif /* _LINUX_SIGNAL_H */