Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/powerpc/mpc6xx protect Debugger() call with ifdef DDB
details: https://anonhg.NetBSD.org/src/rev/151ffb7044ff
branches: trunk
changeset: 533673:151ffb7044ff
user: dbj <dbj%NetBSD.org@localhost>
date: Sun Jul 07 00:43:11 2002 +0000
description:
protect Debugger() call with ifdef DDB
diffstat:
sys/arch/powerpc/mpc6xx/pmap.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (19 lines):
diff -r 67e7e844a3d7 -r 151ffb7044ff sys/arch/powerpc/mpc6xx/pmap.c
--- a/sys/arch/powerpc/mpc6xx/pmap.c Sun Jul 07 00:22:18 2002 +0000
+++ b/sys/arch/powerpc/mpc6xx/pmap.c Sun Jul 07 00:43:11 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.47 2002/07/03 20:41:20 matt Exp $ */
+/* $NetBSD: pmap.c,v 1.48 2002/07/07 00:43:11 dbj Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -2935,7 +2935,9 @@
format_bytes(pbuf, sizeof(pbuf), ptoa((u_int64_t) cnt));
printf("pmap_bootstrap: UVM memory = %s (%u pages)\n",
pbuf, cnt);
+#ifdef DDB
Debugger();
+#endif
}
#endif
Home |
Main Index |
Thread Index |
Old Index