signal.h 234 B

12345678910111213
  1. #ifndef _ASM_SIGNAL_H
  2. #define _ASM_SIGNAL_H
  3. #include <uapi/asm/signal.h>
  4. struct old_sigaction {
  5. __sighandler_t sa_handler;
  6. old_sigset_t sa_mask;
  7. unsigned long sa_flags;
  8. __sigrestore_t sa_restorer;
  9. };
  10. #endif /* _ASM_SIGNAL_H */