sigcontext.h 385 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_CPU_SH2_SIGCONTEXT_H
  3. #define __ASM_CPU_SH2_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. };
  15. #endif /* __ASM_CPU_SH2_SIGCONTEXT_H */