diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2001-12-18 11:17:27 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2001-12-18 11:17:27 +0000 |
commit | 73033bfd41b4fb8484f39192889ccf0fc83c8602 (patch) | |
tree | f159e4b51e5402dcc370ce13767475b8533baea2 /sys/arch | |
parent | 5ad5a6fc0f28c031a7664a9b888edeef71a24c6f (diff) |
Delay Debugger(). Noticed by NetBSD.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 84b50995374..ecc8254ae37 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.48 2001/12/08 02:24:07 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.49 2001/12/18 11:17:26 hugh Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -277,6 +277,10 @@ cpu_startup() */ bufinit(); +#ifdef DDB + if (boothowto & RB_KDB) + Debugger(); +#endif /* * Configure the system. @@ -353,10 +357,6 @@ consinit() if (sizeof(struct user) > REDZONEADDR) panic("struct user inside red zone"); #endif -#ifdef donotworkbyunknownreason - if (boothowto & RB_KDB) - Debugger(); -#endif #endif } |