1 /* $Id: sigcontext.h,v 1.2 1999/09/27 16:01:40 ralf Exp $
2 *
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
5 * for more details.
6 *
7 * Copyright (C) 1996, 1997, 1999 by Ralf Baechle
8 * Copyright (C) 1999 Silicon Graphics, Inc.
9 */
10 #ifndef _ASM_SIGCONTEXT_H
11 #define _ASM_SIGCONTEXT_H
12
13 /*
14 * Keep this struct definition in sync with the sigcontext fragment
15 * in arch/mips/tools/offset.c
16 */
17 struct sigcontext {
18 unsigned long long sc_regs[32];
19 unsigned long long sc_fpregs[32];
20 unsigned long long sc_mdhi;
21 unsigned long long sc_mdlo;
22 unsigned long long sc_pc;
23 unsigned int sc_status;
24 unsigned int sc_ownedfp;
25 unsigned int sc_fpc_csr;
26 unsigned int sc_fpc_eir;
27
28 unsigned int sc_cause;
29 unsigned int sc_badvaddr;
30 };
31
32 #endif /* _ASM_SIGCONTEXT_H */
33
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.