sigcontext.h 346 B

1234567891011121314151617
  1. #ifndef __ASM_CPU_SH2_SIGCONTEXT_H
  2. #define __ASM_CPU_SH2_SIGCONTEXT_H
  3. struct sigcontext {
  4. unsigned long oldmask;
  5. /* CPU registers */
  6. unsigned long sc_regs[16];
  7. unsigned long sc_pc;
  8. unsigned long sc_pr;
  9. unsigned long sc_sr;
  10. unsigned long sc_gbr;
  11. unsigned long sc_mach;
  12. unsigned long sc_macl;
  13. };
  14. #endif /* __ASM_CPU_SH2_SIGCONTEXT_H */