From: Nicholas Nethercote Date: Wed, 23 Jun 2004 16:15:06 +0000 (+0000) Subject: Reduce rounding size for gap between shadow memory and Valgrind's space from X-Git-Tag: svn/VALGRIND_2_1_2~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=594e6f8e3ca0d3dfce5a6b2d35a5de8e4fa68c7e;p=thirdparty%2Fvalgrind.git Reduce rounding size for gap between shadow memory and Valgrind's space from 64MB to 1MB. Gives tools a bit more address space to play with. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2438 --- diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c index 35a72e3e77..4d53d2421a 100644 --- a/coregrind/vg_main.c +++ b/coregrind/vg_main.c @@ -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')