summaryrefslogtreecommitdiffstats
path: root/include/asm-mips64/sigcontext.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-09-28 22:25:29 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-09-28 22:25:29 +0000
commit0ae8dceaebe3659ee0c3352c08125f403e77ebca (patch)
tree5085c389f09da78182b899d19fe1068b619a69dd /include/asm-mips64/sigcontext.h
parent273767781288c35c9d679e908672b9996cda4c34 (diff)
Merge with 2.3.10.
Diffstat (limited to 'include/asm-mips64/sigcontext.h')
-rw-r--r--include/asm-mips64/sigcontext.h22
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 */