kernel_sigaction.h 256 B

123456789101112
  1. #ifndef _BITS_SIGACTION_STRUCT_H
  2. #define _BITS_SIGACTION_STRUCT_H
  3. /* This is the sigaction struction from the Linux 2.1.20 kernel. */
  4. struct old_kernel_sigaction {
  5. __sighandler_t k_sa_handler;
  6. unsigned long sa_mask;
  7. unsigned int sa_flags;
  8. };
  9. #endif