From: Julian Seward Date: Wed, 22 Aug 2007 23:51:33 +0000 (+0000) Subject: Make the ExeContext hash table a whole lot bigger. X-Git-Tag: svn/VALGRIND_3_3_0~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7315effc534991636c5483abd8df8c71f332e292;p=thirdparty%2Fvalgrind.git Make the ExeContext hash table a whole lot bigger. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6774 --- diff --git a/coregrind/m_execontext.c b/coregrind/m_execontext.c index 8d183ae7d2..05d1894884 100644 --- a/coregrind/m_execontext.c +++ b/coregrind/m_execontext.c @@ -55,7 +55,7 @@ struct _ExeContext { /* 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. */