summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorKanoj Sarcar <kanoj@engr.sgi.com>2000-03-15 22:46:55 +0000
committerKanoj Sarcar <kanoj@engr.sgi.com>2000-03-15 22:46:55 +0000
commit1f2be86b3d8d9972559d28c9ea86f3f83e2f9429 (patch)
tree92053aafbef541ef8421dea3ef06885b5cc3b87d /arch
parent11c9d7ae6547f6761beedd9b4b961ac0a99b589c (diff)
Get the 32 bit sigaction structure definition right, even though it does
not help anything.
Diffstat (limited to 'arch')
-rw-r--r--arch/mips64/kernel/signal32.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/mips64/kernel/signal32.c b/arch/mips64/kernel/signal32.c
index 109c4d37b..e638ea583 100644
--- a/arch/mips64/kernel/signal32.c
+++ b/arch/mips64/kernel/signal32.c
@@ -1,4 +1,4 @@
-/* $Id: signal32.c,v 1.2 2000/02/18 00:03:48 ralf Exp $
+/* $Id: signal32.c,v 1.3 2000/03/07 15:45:28 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
@@ -38,12 +38,11 @@ extern asmlinkage int restore_fp_context(struct sigcontext *sc);
/* 32-bit compatibility types */
-#define _NSIG32 128
#define _NSIG32_BPW 32
-#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
+#define _NSIG32_WORDS (_NSIG / _NSIG32_BPW)
typedef struct {
- unsigned int sig[_NSIG_WORDS];
+ unsigned int sig[_NSIG32_WORDS];
} sigset32_t;
typedef unsigned int __sighandler32_t;