summaryrefslogtreecommitdiff
path: root/sys/arch/sun3
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-06-23 13:40:48 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-06-23 13:40:48 +0000
commitd9f2d1f47c11e592631c96d3579d0668bfa6263c (patch)
tree400600439531a9656e1872ba939bb70b063e70d2 /sys/arch/sun3
parent68724c0f259f3ac9ffd8076581b17eec8c43719b (diff)
In zs_abort, wrap a #ifdef DDB around a Debugger() invocation.
Chris Jones via Gene Skonicki.
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r--sys/arch/sun3/dev/zs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sun3/dev/zs.c b/sys/arch/sun3/dev/zs.c
index df440c4df75..f8fa769c3cd 100644
--- a/sys/arch/sun3/dev/zs.c
+++ b/sys/arch/sun3/dev/zs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: zs.c,v 1.7 1997/01/16 04:04:00 kstailey Exp $ */
+/* $OpenBSD: zs.c,v 1.8 1997/06/23 13:40:47 kstailey Exp $ */
/* $NetBSD: zs.c,v 1.42 1996/11/20 18:57:03 gwr Exp $ */
/*-
@@ -690,7 +690,7 @@ zs_abort()
rr0 = zc->zc_csr;
ZS_DELAY();
} while (rr0 & ZSRR0_BREAK);
-
- /* XXX - Always available, but may be the PROM monitor. */
+#ifdef DDB
Debugger();
+#endif
}