sigcontext.h 681 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * include/asm-xtensa/sigcontext.h
  4. *
  5. * This file is subject to the terms and conditions of the GNU General Public
  6. * License. See the file "COPYING" in the main directory of this archive
  7. * for more details.
  8. *
  9. * Copyright (C) 2001 - 2007 Tensilica Inc.
  10. */
  11. #ifndef _XTENSA_SIGCONTEXT_H
  12. #define _XTENSA_SIGCONTEXT_H
  13. struct sigcontext {
  14. unsigned long sc_pc;
  15. unsigned long sc_ps;
  16. unsigned long sc_lbeg;
  17. unsigned long sc_lend;
  18. unsigned long sc_lcount;
  19. unsigned long sc_sar;
  20. unsigned long sc_acclo;
  21. unsigned long sc_acchi;
  22. unsigned long sc_a[16];
  23. void *sc_xtregs;
  24. };
  25. #endif /* _XTENSA_SIGCONTEXT_H */