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 12 #ifndef _XTENSA_SIGCONTEXT_H 13 #define _XTENSA_SIGCONTEXT_H 14 15 16 struct sigcontext { 17 unsigned long sc_pc; 18 unsigned long sc_ps; 19 unsigned long sc_lbeg; 20 unsigned long sc_lend; 21 unsigned long sc_lcount; 22 unsigned long sc_sar; 23 unsigned long sc_acclo; 24 unsigned long sc_acchi; 25 unsigned long sc_a[16]; 26 void *sc_xtregs; 27 }; 28 29 #endif /* _XTENSA_SIGCONTEXT_H */ 30