sigcontext.h 541 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_CPU_SH4_SIGCONTEXT_H
  3. #define __ASM_CPU_SH4_SIGCONTEXT_H
  4. struct sigcontext {
  5. unsigned long oldmask;
  6. /* CPU registers */
  7. unsigned long sc_regs[16];
  8. unsigned long sc_pc;
  9. unsigned long sc_pr;
  10. unsigned long sc_sr;
  11. unsigned long sc_gbr;
  12. unsigned long sc_mach;
  13. unsigned long sc_macl;
  14. /* FPU registers */
  15. unsigned long sc_fpregs[16];
  16. unsigned long sc_xfpregs[16];
  17. unsigned int sc_fpscr;
  18. unsigned int sc_fpul;
  19. unsigned int sc_ownedfp;
  20. };
  21. #endif /* __ASM_CPU_SH4_SIGCONTEXT_H */