summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Fogelstrom <pefo@cvs.openbsd.org>1998-03-16 09:54:02 +0000
committerPer Fogelstrom <pefo@cvs.openbsd.org>1998-03-16 09:54:02 +0000
commita64f044cc030edeb4eed9181fdaf2f4b4bf2eba0 (patch)
tree5653ff3e243af4ada193201c0b69a86a853e0f0a
parenta963ca51673d0d081904efce31dd28f05d83e730 (diff)
"Take us to DDB!"
-rw-r--r--sys/arch/arc/dev/pccons.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arc/dev/pccons.c b/sys/arch/arc/dev/pccons.c
index 7e4b07dd537..e3013ee93af 100644
--- a/sys/arch/arc/dev/pccons.c
+++ b/sys/arch/arc/dev/pccons.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pccons.c,v 1.19 1998/03/16 09:38:43 pefo Exp $ */
+/* $OpenBSD: pccons.c,v 1.20 1998/03/16 09:54:01 pefo Exp $ */
/* $NetBSD: pccons.c,v 1.89 1995/05/04 19:35:20 cgd Exp $ */
/*-
@@ -1758,12 +1758,12 @@ top:
goto loop;
}
-#ifdef DEBUG
+#ifdef DDB
/*
* Check for cntl-alt-esc.
*/
if ((dt == 1) && (shift_state & (KB_CTL | KB_ALT)) == (KB_CTL | KB_ALT)) {
- mdbpanic();
+ Debugger();
dt |= 0x80; /* discard esc (ddb discarded ctl-alt) */
}
#endif