summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include/signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/m88k/include/signal.h')
-rw-r--r--sys/arch/m88k/include/signal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/m88k/include/signal.h b/sys/arch/m88k/include/signal.h
index ef4dfed462b..2303835c934 100644
--- a/sys/arch/m88k/include/signal.h
+++ b/sys/arch/m88k/include/signal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: signal.h,v 1.5 2011/03/23 16:54:35 pirofti Exp $ */
+/* $OpenBSD: signal.h,v 1.6 2012/05/09 21:25:33 miod Exp $ */
/*
* Copyright (c) 1996 Nivas Madhur
* All rights reserved.
@@ -38,7 +38,6 @@
typedef int sig_atomic_t;
#if __BSD_VISIBLE || __XPG_VISIBLE >= 420
-#include <machine/reg.h>
/*
* Information pushed on stack when a signal is delivered.
@@ -53,7 +52,7 @@ struct sigcontext {
int sc_onstack; /* sigstack state to restore */
int sc_mask; /* signal mask to restore */
/* begin machine dependent portion */
- struct reg sc_regs;
+ unsigned int sc_regs[32 + 25];
};
#endif /* __BSD_VISIBLE || __XPG_VISIBLE >= 420 */
#endif /* _M88K_SIGNAL_H_ */