|
From: <sv...@va...> - 2010-10-13 21:20:04
|
Author: sewardj Date: 2010-10-13 22:19:54 +0100 (Wed, 13 Oct 2010) New Revision: 11439 Log: Increase default size of the freed blocks queue from 10MB to 20MB. Modified: trunk/memcheck/mc_main.c Modified: trunk/memcheck/mc_main.c =================================================================== --- trunk/memcheck/mc_main.c 2010-10-13 14:06:00 UTC (rev 11438) +++ trunk/memcheck/mc_main.c 2010-10-13 21:19:54 UTC (rev 11439) @@ -4740,7 +4740,7 @@ /*------------------------------------------------------------*/ 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 @@ " --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=<number> volume of freed blocks queue [10000000]\n" +" --freelist-vol=<number> 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=<hexnumber> fill malloc'd areas with given value\n" |