Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/i386/i386 s/DEBUG/LDT_DEBUG/ This got too verbose w...
details: https://anonhg.NetBSD.org/src/rev/10d31bd00ab2
branches: trunk
changeset: 467348:10d31bd00ab2
user: christos <christos%NetBSD.org@localhost>
date: Tue Mar 23 15:48:19 1999 +0000
description:
s/DEBUG/LDT_DEBUG/ This got too verbose when running Wine.
diffstat:
sys/arch/i386/i386/sys_machdep.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r e5197afb236e -r 10d31bd00ab2 sys/arch/i386/i386/sys_machdep.c
--- a/sys/arch/i386/i386/sys_machdep.c Tue Mar 23 14:57:00 1999 +0000
+++ b/sys/arch/i386/i386/sys_machdep.c Tue Mar 23 15:48:19 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_machdep.c,v 1.45 1999/01/19 18:18:42 thorpej Exp $ */
+/* $NetBSD: sys_machdep.c,v 1.46 1999/03/23 15:48:19 christos Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -218,7 +218,7 @@
if ((error = copyin(args, &ua, sizeof(ua))) != 0)
return (error);
-#ifdef DEBUG
+#ifdef LDT_DEBUG
printf("i386_get_ldt: start=%d num=%d descs=%p\n", ua.start,
ua.num, ua.desc);
#endif
@@ -263,7 +263,7 @@
if ((error = copyin(args, &ua, sizeof(ua))) != 0)
return (error);
-#ifdef DEBUG
+#ifdef LDT_DEBUG
printf("i386_set_ldt: start=%d num=%d descs=%p\n", ua.start,
ua.num, ua.desc);
#endif
@@ -313,7 +313,7 @@
if (old_ldt != ldt)
kmem_free(kernel_map, (vaddr_t)old_ldt, old_len);
#endif
-#ifdef DEBUG
+#ifdef LDT_DEBUG
printf("i386_set_ldt(%d): new_ldt=%p\n", p->p_pid, new_ldt);
#endif
}
Home |
Main Index |
Thread Index |
Old Index