summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>2000-06-11 07:54:32 +0000
committermycroft <mycroft@NetBSD.org>2000-06-11 07:54:32 +0000
commitd53a63dfffd31fcf3a92abaa83dbda47417404a6 (patch)
tree7c462e07f162ac4f66a7cf9c62a0c1bfb94cb686 /usr.bin/make
parente7aefcd7aef944b428f6e1de30a990b73e6859d3 (diff)
Use a lower threshold for rebuilding hash tables.
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/hash.c b/usr.bin/make/hash.c
index dcd01b148d3..67b66514cb3 100644
--- a/usr.bin/make/hash.c
+++ b/usr.bin/make/hash.c
@@ -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 @@ static void RebuildTable __P((Hash_Table *));
* at which we rebuild the table to make it larger.
*/
-#define rebuildLimit 8
+#define rebuildLimit 3
/*
*---------------------------------------------------------