]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Reduce rounding size for gap between shadow memory and Valgrind's space from
authorNicholas Nethercote <n.nethercote@gmail.com>
Wed, 23 Jun 2004 16:15:06 +0000 (16:15 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Wed, 23 Jun 2004 16:15:06 +0000 (16:15 +0000)
64MB to 1MB.  Gives tools a bit more address space to play with.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2438

coregrind/vg_main.c

index 35a72e3e777216ac94ea7fdd6b36179c130f7b72..4d53d2421a7cba4a4e32e58b5328eb23c1ca4daa 100644 (file)
@@ -81,7 +81,7 @@
 #define REDZONE_SIZE           (1 * 1024*1024)
 
 /* size multiple for client address space */
-#define CLIENT_SIZE_MULTIPLE   (64 * 1024*1024)
+#define CLIENT_SIZE_MULTIPLE   (1 * 1024*1024)
 
 #define ISSPACE(cc)      ((cc) == ' ' || (cc) == '\t' || (cc) == '\n')