summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/include/signal.h
diff options
context:
space:
mode:
authorSteve Murphree <smurph@cvs.openbsd.org>2001-12-13 08:55:53 +0000
committerSteve Murphree <smurph@cvs.openbsd.org>2001-12-13 08:55:53 +0000
commit473b535f76f86533ee5e407fe116de57f486b4ab (patch)
tree4f23697fe5a745e7407f507f3b3a3e82e9bd7150 /sys/arch/mvme88k/include/signal.h
parent73fa188e07813a02c13455459ffa53a64e277416 (diff)
Support for MVME197 completed. Fix SPL defs.
Diffstat (limited to 'sys/arch/mvme88k/include/signal.h')
-rw-r--r--sys/arch/mvme88k/include/signal.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/signal.h b/sys/arch/mvme88k/include/signal.h
index 817828f11de..618f3a694c8 100644
--- a/sys/arch/mvme88k/include/signal.h
+++ b/sys/arch/mvme88k/include/signal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: signal.h,v 1.6 2001/08/12 12:03:02 heko Exp $ */
+/* $OpenBSD: signal.h,v 1.7 2001/12/13 08:55:51 smurph Exp $ */
/*
* Copyright (c) 1996 Nivas Madhur
* All rights reserved.
@@ -55,15 +55,25 @@ struct sigcontext {
int sc_fpsr;
int sc_fpcr;
int sc_ssbr;
+#define sc_duap sc_ssbr /* mc88110 */
int sc_dmt0;
+#define sc_dsr sc_dmt0 /* mc88110 */
int sc_dmd0;
+#define sc_dlar sc_dmd0 /* mc88110 */
int sc_dma0;
+#define sc_dpar sc_dma0 /* mc88110 */
int sc_dmt1;
+#define sc_isr sc_dmt1 /* mc88110 */
int sc_dmd1;
+#define sc_ilar sc_dmd1 /* mc88110 */
int sc_dma1;
+#define sc_ipar sc_dma1 /* mc88110 */
int sc_dmt2;
+#define sc_isap sc_dmt2 /* mc88110 */
int sc_dmd2;
+#define sc_dsap sc_dmd2 /* mc88110 */
int sc_dma2;
+#define sc_iuap sc_dma2 /* mc88110 */
int sc_fpecr;
int sc_fphs1;
int sc_fpls1;
@@ -73,6 +83,6 @@ struct sigcontext {
int sc_fprh;
int sc_fprl;
int sc_fpit;
- int sc_xxxx; /* padd to double word boundary */
+ int sc_xxxx; /* pad to double word boundary */
};
#endif /* __MACHINE_SIGNAL_H__ */