Skip to content

Commit

Permalink
profiling.core: verify that the source flamechart is completed
Browse files Browse the repository at this point in the history
Signed-off-by: Arnaud Fiorini <fiorini.arnaud@gmail.com>
  • Loading branch information
arfio committed Apr 11, 2024
1 parent 9256f3f commit cd71bea
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ private boolean executeForRange(CallGraph callgraph, TmfTimeRange range, @Nullab
return false;
}
IFlameChartProvider callstackModule = fCsProvider;
if (!callstackModule.isComplete()) {
return false;
}
CallStackSeries callstack = callstackModule.getCallStackSeries();
if (callstack != null) {
long time0 = range.getStartTime().toNanos();
Expand Down

0 comments on commit cd71bea

Please sign in to comment.