signal.h 369 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef __ASM_SH_SIGNAL_H
  3. #define __ASM_SH_SIGNAL_H
  4. #define SA_RESTORER 0x04000000
  5. #include <asm-generic/signal.h>
  6. #ifndef __KERNEL__
  7. struct old_sigaction {
  8. __sighandler_t sa_handler;
  9. old_sigset_t sa_mask;
  10. unsigned long sa_flags;
  11. void (*sa_restorer)(void);
  12. };
  13. #endif
  14. #endif /* __ASM_SH_SIGNAL_H */