1*8c2f4a8dSVineet Gupta /* 2*8c2f4a8dSVineet Gupta * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) 3*8c2f4a8dSVineet Gupta * 4*8c2f4a8dSVineet Gupta * This program is free software; you can redistribute it and/or modify 5*8c2f4a8dSVineet Gupta * it under the terms of the GNU General Public License version 2 as 6*8c2f4a8dSVineet Gupta * published by the Free Software Foundation. 7*8c2f4a8dSVineet Gupta */ 8*8c2f4a8dSVineet Gupta 9*8c2f4a8dSVineet Gupta #ifndef _ASM_ARC_SIGCONTEXT_H 10*8c2f4a8dSVineet Gupta #define _ASM_ARC_SIGCONTEXT_H 11*8c2f4a8dSVineet Gupta 12*8c2f4a8dSVineet Gupta #include <asm/ptrace.h> 13*8c2f4a8dSVineet Gupta 14*8c2f4a8dSVineet Gupta /* 15*8c2f4a8dSVineet Gupta * Signal context structure - contains all info to do with the state 16*8c2f4a8dSVineet Gupta * before the signal handler was invoked. 17*8c2f4a8dSVineet Gupta */ 18*8c2f4a8dSVineet Gupta struct sigcontext { 19*8c2f4a8dSVineet Gupta struct user_regs_struct regs; 20*8c2f4a8dSVineet Gupta }; 21*8c2f4a8dSVineet Gupta 22*8c2f4a8dSVineet Gupta #endif /* _ASM_ARC_SIGCONTEXT_H */ 23