From: Julian Seward Date: Wed, 13 Oct 2010 21:19:54 +0000 (+0000) Subject: Increase default size of the freed blocks queue from 10MB to 20MB. X-Git-Tag: svn/VALGRIND_3_6_0~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3bb084c4a5b0f9678006c6c4455be5a3e5cf2b3;p=thirdparty%2Fvalgrind.git Increase default size of the freed blocks queue from 10MB to 20MB. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11439 --- diff --git a/memcheck/mc_main.c b/memcheck/mc_main.c index c0d8c9cb00..cf7a0212cc 100644 --- a/memcheck/mc_main.c +++ b/memcheck/mc_main.c @@ -4740,7 +4740,7 @@ static Bool mc_expensive_sanity_check ( void ) /*------------------------------------------------------------*/ Bool MC_(clo_partial_loads_ok) = False; -Long MC_(clo_freelist_vol) = 10*1000*1000LL; +Long MC_(clo_freelist_vol) = 20*1000*1000LL; LeakCheckMode MC_(clo_leak_check) = LC_Summary; VgRes MC_(clo_leak_resolution) = Vg_HighRes; Bool MC_(clo_show_reachable) = False; @@ -4871,7 +4871,7 @@ static void mc_print_usage(void) " --undef-value-errors=no|yes check for undefined value errors [yes]\n" " --track-origins=no|yes show origins of undefined values? [no]\n" " --partial-loads-ok=no|yes too hard to explain here; see manual [no]\n" -" --freelist-vol= volume of freed blocks queue [10000000]\n" +" --freelist-vol= volume of freed blocks queue [20000000]\n" " --workaround-gcc296-bugs=no|yes self explanatory [no]\n" " --ignore-ranges=0xPP-0xQQ[,0xRR-0xSS] assume given addresses are OK\n" " --malloc-fill= fill malloc'd areas with given value\n"