[svn:parrot] r39414 - trunk/src
Infinoid at svn.parrot.org
Infinoid at svn.parrot.org
Fri Jun 5 23:42:24 UTC 2009
Author: Infinoid
Date: Fri Jun 5 23:42:23 2009
New Revision: 39414
URL: https://trac.parrot.org/parrot/changeset/39414
Log:
[core] Tweak initial hash buckets (from 16 to 4).
Modified:
trunk/src/hash.c
Modified: trunk/src/hash.c
==============================================================================
--- trunk/src/hash.c Fri Jun 5 23:19:30 2009 (r39413)
+++ trunk/src/hash.c Fri Jun 5 23:42:23 2009 (r39414)
@@ -33,7 +33,7 @@
/* the number of entries above which it's faster to hash the hashval instead of
* looping over the used HashBuckets directly */
#define SMALL_HASH_SIZE 4
-#define INITIAL_BUCKETS 16
+#define INITIAL_BUCKETS 4
/* HEADERIZER HFILE: include/parrot/hash.h */
More information about the parrot-commits
mailing list