sigcontext.h 265 B

123456789101112131415
  1. #ifndef _ASM_PPC_SIGCONTEXT_H
  2. #define _ASM_PPC_SIGCONTEXT_H
  3. #include <asm/ptrace.h>
  4. #include <linux/compiler.h>
  5. struct sigcontext {
  6. unsigned long _unused[4];
  7. int signal;
  8. unsigned long handler;
  9. unsigned long oldmask;
  10. struct pt_regs __user *regs;
  11. };
  12. #endif