|
From: <sv...@va...> - 2011-09-26 20:22:26
|
Author: sewardj
Date: 2011-09-26 21:17:41 +0100 (Mon, 26 Sep 2011)
New Revision: 12052
Log:
Heap profiler: reduce threshold at which a new profile is shown for
an arena from 10% to 5%.
Modified:
trunk/coregrind/m_mallocfree.c
Modified: trunk/coregrind/m_mallocfree.c
===================================================================
--- trunk/coregrind/m_mallocfree.c 2011-09-26 20:16:15 UTC (rev 12051)
+++ trunk/coregrind/m_mallocfree.c 2011-09-26 20:17:41 UTC (rev 12052)
@@ -1578,7 +1578,7 @@
/* next profile after 10% more growth */
a->next_profile_at
= (SizeT)(
- (((ULong)a->stats__bytes_on_loan_max) * 110ULL) / 100ULL );
+ (((ULong)a->stats__bytes_on_loan_max) * 105ULL) / 100ULL );
if (VG_(clo_profile_heap))
cc_analyse_alloc_arena(aid);
}
|