sigcontext.h 518 B

1234567891011121314151617181920212223
  1. #ifndef _ASM_SCORE_SIGCONTEXT_H
  2. #define _ASM_SCORE_SIGCONTEXT_H
  3. /*
  4. * Keep this struct definition in sync with the sigcontext fragment
  5. * in arch/score/tools/offset.c
  6. */
  7. struct sigcontext {
  8. unsigned int sc_regmask;
  9. unsigned int sc_psr;
  10. unsigned int sc_condition;
  11. unsigned long sc_pc;
  12. unsigned long sc_regs[32];
  13. unsigned int sc_ssflags;
  14. unsigned int sc_mdceh;
  15. unsigned int sc_mdcel;
  16. unsigned int sc_ecr;
  17. unsigned long sc_ema;
  18. unsigned long sc_sigset[4];
  19. };
  20. #endif /* _ASM_SCORE_SIGCONTEXT_H */