]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Double static limits for safety.
authorJulian Seward <jseward@acm.org>
Tue, 2 Aug 2005 15:30:08 +0000 (15:30 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 2 Aug 2005 15:30:08 +0000 (15:30 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4307

coregrind/m_aspacemgr/aspacemgr.c

index 514063d308face130aaf6ba59cbc24e52b639c4d..5545efefe372255d9c89760420267d6c6e1ecbf0 100644 (file)
@@ -118,10 +118,10 @@ SysRes VG_(mprotect_native)( void *start, SizeT length, UInt prot )
 /*--------------------------------------------------------------*/
 
 /* Max number of segments we can track. */
-#define VG_N_SEGMENTS 1000
+#define VG_N_SEGMENTS 2000
 
 /* Max number of segment file names we can track. */
-#define VG_N_SEGNAMES 200
+#define VG_N_SEGNAMES 400
 
 /* Max length of a segment file name. */
 #define VG_MAX_SEGNAMELEN 1000