signal.h 280 B

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