signal.h 306 B

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