sigcontext.h 502 B

123456789101112131415161718192021222324
  1. #ifndef __ASM_CPU_SH4_SIGCONTEXT_H
  2. #define __ASM_CPU_SH4_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. /* FPU registers */
  14. unsigned long sc_fpregs[16];
  15. unsigned long sc_xfpregs[16];
  16. unsigned int sc_fpscr;
  17. unsigned int sc_fpul;
  18. unsigned int sc_ownedfp;
  19. };
  20. #endif /* __ASM_CPU_SH4_SIGCONTEXT_H */