diff options
Diffstat (limited to 'include/asm-mips64/sigcontext.h')
-rw-r--r-- | include/asm-mips64/sigcontext.h | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/include/asm-mips64/sigcontext.h b/include/asm-mips64/sigcontext.h index 23cdb5cd6..215d56124 100644 --- a/include/asm-mips64/sigcontext.h +++ b/include/asm-mips64/sigcontext.h @@ -1,4 +1,4 @@ -/* $Id$ +/* $Id: sigcontext.h,v 1.2 1999/09/27 16:01:40 ralf Exp $ * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive @@ -15,22 +15,18 @@ * in arch/mips/tools/offset.c */ struct sigcontext { - unsigned int sc_regmask; /* Unused */ - unsigned int sc_status; - unsigned long long sc_pc; unsigned long long sc_regs[32]; - unsigned long long sc_fpregs[32]; /* Unused */ - unsigned int sc_ownedfp; - unsigned int sc_fpc_csr; /* Unused */ - unsigned int sc_fpc_eir; /* Unused */ - unsigned int sc_ssflags; /* Unused */ + unsigned long long sc_fpregs[32]; unsigned long long sc_mdhi; unsigned long long sc_mdlo; + unsigned long long sc_pc; + unsigned int sc_status; + unsigned int sc_ownedfp; + unsigned int sc_fpc_csr; + unsigned int sc_fpc_eir; - unsigned int sc_cause; /* Unused */ - unsigned int sc_badvaddr; /* Unused */ - - unsigned int sc_sigset[4]; /* kernel's sigset_t */ + unsigned int sc_cause; + unsigned int sc_badvaddr; }; #endif /* _ASM_SIGCONTEXT_H */ |