summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2004-06-16 18:23:06 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2004-06-16 18:23:06 +0000
commitd380de4b4820cd461f5d067f47a23740795b3f7c (patch)
tree34cc2c81ac1423d5a04ec7473c95a910ab98400f
parent3053168c4e5b47e21a2707235b85cc0416d1c1fc (diff)
Missing ifdef DDB
ok deraadt@
-rw-r--r--sys/arch/i386/i386/cpu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/cpu.c b/sys/arch/i386/i386/cpu.c
index c447da4e533..acd6fcf6659 100644
--- a/sys/arch/i386/i386/cpu.c
+++ b/sys/arch/i386/i386/cpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.c,v 1.2 2004/06/13 21:49:15 niklas Exp $ */
+/* $OpenBSD: cpu.c,v 1.3 2004/06/16 18:23:05 grange Exp $ */
/* $NetBSD: cpu.c,v 1.1.2.7 2000/06/26 02:04:05 sommerfeld Exp $ */
/*-
@@ -422,7 +422,9 @@ cpu_boot_secondary (ci)
}
if (!(ci->ci_flags & CPUF_RUNNING)) {
printf("cpu failed to become ready\n");
+#ifdef DDB
Debugger();
+#endif
}
CPU_START_CLEANUP(ci);