1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 01:45:33 +02:00

Bug 514838 - Return sessionId when context is IExecutionDMContext

Return the session id from setDebugContext when dmContext is
IExecutionDMContext. This session id is needed in
DisassemblyPart.updateDebugContext()

Change-Id: I28f51d990f2b9c51718e5859279ea252091e3beb
This commit is contained in:
William Riley 2018-05-15 14:20:34 +01:00
parent e533381b75
commit bbe00c902e

View file

@ -269,7 +269,7 @@ public class DisassemblyBackendDsf extends AbstractDisassemblyBackend implements
}
} else if (dmContext instanceof IExecutionDMContext) {
// When switching to and between thread and application nodes.
result.sessionId = null;
result.sessionId = fDsfSessionId;
result.contextChanged = false;
fTargetContext = (IExecutionDMContext) dmContext;
fTargetFrameContext = null;