1 /* $Id: sigcontext.h,v 1.5 1997/12/16 05:36:43 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, 2000 by Ralf Baechle
8 */
9 #ifndef _ASM_SIGCONTEXT_H
10 #define _ASM_SIGCONTEXT_H
11
12 /*
13 * Keep this struct definition in sync with the sigcontext fragment
14 * in arch/mips/tools/offset.c
15 */
16 struct sigcontext {
17 unsigned int sc_regmask; /* Unused */
18 unsigned int sc_status;
19 unsigned long long sc_pc;
20 unsigned long long sc_regs[32];
21 unsigned long long sc_fpregs[32]; /* Unused */
22 unsigned int sc_ownedfp;
23 unsigned int sc_fpc_csr; /* Unused */
24 unsigned int sc_fpc_eir; /* Unused */
25 unsigned int sc_ssflags; /* Unused */
26 unsigned long long sc_mdhi;
27 unsigned long long sc_mdlo;
28
29 unsigned int sc_cause; /* Unused */
30 unsigned int sc_badvaddr; /* Unused */
31
32 unsigned long sc_sigset[4]; /* kernel's sigset_t */
33 };
34
35 #endif /* _ASM_SIGCONTEXT_H */
36
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.