Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 /*
0003  * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
0004  *
0005  * This program is free software; you can redistribute it and/or modify
0006  * it under the terms of the GNU General Public License version 2 as
0007  * published by the Free Software Foundation.
0008  */
0009 
0010 #ifndef _ASM_ARC_SIGCONTEXT_H
0011 #define _ASM_ARC_SIGCONTEXT_H
0012 
0013 #include <asm/ptrace.h>
0014 
0015 /*
0016  * Signal context structure - contains all info to do with the state
0017  * before the signal handler was invoked.
0018  */
0019 struct sigcontext {
0020     struct user_regs_struct regs;
0021     struct user_regs_arcv2 v2abi;
0022 };
0023 
0024 #endif /* _ASM_ARC_SIGCONTEXT_H */