Path: blob/master/arch/arc/include/uapi/asm/sigcontext.h
26495 views
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)3*4* This program is free software; you can redistribute it and/or modify5* it under the terms of the GNU General Public License version 2 as6* published by the Free Software Foundation.7*/89#ifndef _ASM_ARC_SIGCONTEXT_H10#define _ASM_ARC_SIGCONTEXT_H1112#include <asm/ptrace.h>1314/*15* Signal context structure - contains all info to do with the state16* before the signal handler was invoked.17*/18struct sigcontext {19struct user_regs_struct regs;20struct user_regs_arcv2 v2abi;21};2223#endif /* _ASM_ARC_SIGCONTEXT_H */242526