/arch/sh/include/cpu-common/cpu/sigcontext.h

http://github.com/mirrors/linux · C Header · 18 lines · 13 code · 3 blank · 2 comment · 0 complexity · 8e128ca6e1851c676281ad35e2556f0b MD5 · raw file

  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 */