Skip to content

Commit 6e2fc5f

Browse files
committed
callstack: Add case to handle nestable instant events
display markers for nested events Signed-off-by: Yassine Ibhir <yassine.ibhir.ibhir@ericsson.com>
1 parent d5de0fe commit 6e2fc5f

File tree

1 file changed

+4
-1
lines changed
  • tracetypes/org.eclipse.tracecompass.incubator.traceevent.core/src/org/eclipse/tracecompass/incubator/internal/traceevent/core/analysis/callstack

1 file changed

+4
-1
lines changed

tracetypes/org.eclipse.tracecompass.incubator.traceevent.core/src/org/eclipse/tracecompass/incubator/internal/traceevent/core/analysis/callstack/TraceEventCallStackProvider.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
public class TraceEventCallStackProvider extends CallStackStateProvider {
6262

6363
private static final String ASYNC_SUFFIX = "(async)"; //$NON-NLS-1$
64-
private static final int VERSION_NUMBER = 9;
64+
private static final int VERSION_NUMBER = 10;
6565
private static final int UNSET_ID = -1;
6666
static final String EDGES = "EDGES"; //$NON-NLS-1$
6767

@@ -266,6 +266,9 @@ protected void eventHandle(ITmfEvent event) {
266266
return;
267267
}
268268
switch (ph) {
269+
case TraceEventPhases.NESTABLE_INSTANT:
270+
handleInstant(event, ss, timestamp, processName);
271+
break;
269272
case TraceEventPhases.INSTANT:
270273
handleInstant(event, ss, timestamp, processName);
271274
break;

0 commit comments

Comments
 (0)