From 7315effc534991636c5483abd8df8c71f332e292 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Wed, 22 Aug 2007 23:51:33 +0000 Subject: [PATCH] Make the ExeContext hash table a whole lot bigger. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6774 --- coregrind/m_execontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.47.2