|
From: <sv...@va...> - 2010-12-08 23:22:04
|
Author: njn
Date: 2010-12-08 23:21:55 +0000 (Wed, 08 Dec 2010)
New Revision: 11486
Log:
Raise Massif's maximum --detailed-freq value from 10,000 to 1,000,000.
MERGED FROM TRUNK
Modified:
branches/VALGRIND_3_6_BRANCH/massif/ms_main.c
Modified: branches/VALGRIND_3_6_BRANCH/massif/ms_main.c
===================================================================
--- branches/VALGRIND_3_6_BRANCH/massif/ms_main.c 2010-12-08 02:51:43 UTC (rev 11485)
+++ branches/VALGRIND_3_6_BRANCH/massif/ms_main.c 2010-12-08 23:21:55 UTC (rev 11486)
@@ -455,7 +455,7 @@
else if VG_XACT_CLO(arg, "--time-unit=ms", clo_time_unit, TimeMS) {}
else if VG_XACT_CLO(arg, "--time-unit=B", clo_time_unit, TimeB) {}
- else if VG_BINT_CLO(arg, "--detailed-freq", clo_detailed_freq, 1, 10000) {}
+ else if VG_BINT_CLO(arg, "--detailed-freq", clo_detailed_freq, 1, 1000000) {}
else if VG_BINT_CLO(arg, "--max-snapshots", clo_max_snapshots, 10, 1000) {}
|