Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make Use a lower threshold for rebuilding hash tables.



details:   https://anonhg.NetBSD.org/src/rev/e2f5a045fb6b
branches:  trunk
changeset: 487677:e2f5a045fb6b
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Sun Jun 11 07:54:32 2000 +0000

description:
Use a lower threshold for rebuilding hash tables.

diffstat:

 usr.bin/make/hash.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (35 lines):

diff -r d689e29d983f -r e2f5a045fb6b usr.bin/make/hash.c
--- a/usr.bin/make/hash.c       Sun Jun 11 07:50:11 2000 +0000
+++ b/usr.bin/make/hash.c       Sun Jun 11 07:54:32 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hash.c,v 1.8 1997/09/28 03:31:04 lukem Exp $   */
+/*     $NetBSD: hash.c,v 1.9 2000/06/11 07:54:32 mycroft Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -39,14 +39,14 @@
  */
 
 #ifdef MAKE_BOOTSTRAP
-static char rcsid[] = "$NetBSD: hash.c,v 1.8 1997/09/28 03:31:04 lukem Exp $";
+static char rcsid[] = "$NetBSD: hash.c,v 1.9 2000/06/11 07:54:32 mycroft Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)hash.c     8.1 (Berkeley) 6/6/93";
 #else
-__RCSID("$NetBSD: hash.c,v 1.8 1997/09/28 03:31:04 lukem Exp $");
+__RCSID("$NetBSD: hash.c,v 1.9 2000/06/11 07:54:32 mycroft Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -74,7 +74,7 @@
  * at which we rebuild the table to make it larger.
  */
 
-#define rebuildLimit 8
+#define rebuildLimit 3
 
 /*
  *---------------------------------------------------------



Home | Main Index | Thread Index | Old Index