|
From: <sv...@va...> - 2011-01-10 14:57:10
|
Author: sewardj Date: 2011-01-10 14:56:59 +0000 (Mon, 10 Jan 2011) New Revision: 11493 Log: Only show per-offset access counts for allocations up to 1024 bytes, to avoid producing ridiculous amounts of output. Modified: trunk/exp-dhat/dh_main.c Modified: trunk/exp-dhat/dh_main.c =================================================================== --- trunk/exp-dhat/dh_main.c 2011-01-04 23:49:35 UTC (rev 11492) +++ trunk/exp-dhat/dh_main.c 2011-01-10 14:56:59 UTC (rev 11493) @@ -41,7 +41,7 @@ #include "pub_tool_tooliface.h" #include "pub_tool_wordfm.h" -#define HISTOGRAM_SIZE_LIMIT 4096 //1024 +#define HISTOGRAM_SIZE_LIMIT 1024 //------------------------------------------------------------// |