From: Milian Wolff Date: Sun, 11 Oct 2015 21:40:08 +0000 (+0200) Subject: Increase max chart datapoints to 500. X-Git-Tag: submit/tizen/20180620.112952^2~264 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8390f602809a30227383c5d58e83e61705a16e7c;p=sdk%2Ftools%2Fheaptrack.git Increase max chart datapoints to 500. --- diff --git a/gui/parser.cpp b/gui/parser.cpp index ea9a3fa..a380949 100644 --- a/gui/parser.cpp +++ b/gui/parser.cpp @@ -174,7 +174,7 @@ struct ParserData final : public AccumulatedTraceData return; } maxConsumedSinceLastTimeStamp = max(maxConsumedSinceLastTimeStamp, leaked); - const uint64_t MAX_CHART_DATAPOINTS = 200; // TODO: make this configurable via the GUI + const uint64_t MAX_CHART_DATAPOINTS = 500; // TODO: make this configurable via the GUI const uint64_t diffBetweenTimeStamps = totalTime / MAX_CHART_DATAPOINTS; if (newStamp != totalTime && newStamp - lastTimeStamp < diffBetweenTimeStamps) { return;