Path: blob/master/arch/xtensa/include/uapi/asm/sigcontext.h
26498 views
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* include/asm-xtensa/sigcontext.h3*4* This file is subject to the terms and conditions of the GNU General Public5* License. See the file "COPYING" in the main directory of this archive6* for more details.7*8* Copyright (C) 2001 - 2007 Tensilica Inc.9*/1011#ifndef _XTENSA_SIGCONTEXT_H12#define _XTENSA_SIGCONTEXT_H131415struct sigcontext {16unsigned long sc_pc;17unsigned long sc_ps;18unsigned long sc_lbeg;19unsigned long sc_lend;20unsigned long sc_lcount;21unsigned long sc_sar;22unsigned long sc_acclo;23unsigned long sc_acchi;24unsigned long sc_a[16];25void *sc_xtregs;26};2728#endif /* _XTENSA_SIGCONTEXT_H */293031