|
From: Nicholas N. <nj...@ca...> - 2004-06-23 16:15:15
|
CVS commit by nethercote: 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. M +1 -1 vg_main.c 1.163 --- valgrind/coregrind/vg_main.c #1.162:1.163 @@ -82,5 +82,5 @@ /* 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') |