- Stephen Rothwell: APM updates
[davej-history.git] / include / asm-mips64 / sigcontext.h
blob215d56124d7371341055d665f797f5995e6c1f92
1 /* $Id: sigcontext.h,v 1.2 1999/09/27 16:01:40 ralf Exp $
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.
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
14 * Keep this struct definition in sync with the sigcontext fragment
15 * in arch/mips/tools/offset.c
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;
28 unsigned int sc_cause;
29 unsigned int sc_badvaddr;
32 #endif /* _ASM_SIGCONTEXT_H */