compat_signal.h 526 B

1234567891011121314151617181920212223
  1. #ifndef _COMPAT_SIGNAL_H
  2. #define _COMPAT_SIGNAL_H
  3. #include <linux/compat.h>
  4. #include <asm/signal.h>
  5. #ifdef CONFIG_COMPAT
  6. struct __new_sigaction32 {
  7. unsigned int sa_handler;
  8. unsigned int sa_flags;
  9. unsigned int sa_restorer; /* not used by Linux/SPARC yet */
  10. compat_sigset_t sa_mask;
  11. };
  12. struct __old_sigaction32 {
  13. unsigned int sa_handler;
  14. compat_old_sigset_t sa_mask;
  15. unsigned int sa_flags;
  16. unsigned int sa_restorer; /* not used by Linux/SPARC yet */
  17. };
  18. #endif
  19. #endif /* !(_COMPAT_SIGNAL_H) */