|
From: <sv...@va...> - 2007-08-22 23:51:35
|
Author: sewardj
Date: 2007-08-23 00:51:33 +0100 (Thu, 23 Aug 2007)
New Revision: 6774
Log:
Make the ExeContext hash table a whole lot bigger.
Modified:
trunk/coregrind/m_execontext.c
Modified: trunk/coregrind/m_execontext.c
===================================================================
--- trunk/coregrind/m_execontext.c 2007-08-21 20:28:58 UTC (rev 6773)
+++ trunk/coregrind/m_execontext.c 2007-08-22 23:51:33 UTC (rev 6774)
@@ -55,7 +55,7 @@
/* Number of lists in which we keep track of ExeContexts. Should be
prime. */
-#define N_EC_LISTS 30011 /*4999*/ /* a prime number */
+#define N_EC_LISTS 393241 /*30011*/ /*4999*/ /* a prime number */
/* The idea is only to ever store any one context once, so as to save
space and make exact comparisons faster. */
|