1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

lldb: Add a few missing rm.done()

A few rm.done() calls were missing in overridden methods.
Those queries were slowing down debugging significantly.

Change-Id: I966d79af38721e551e9ebf2a74ca4d8d895241d0
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
Marc-Andre Laperle 2017-03-24 17:01:53 -04:00 committed by Gerrit Code Review @ Eclipse.org
parent 323a39cc6d
commit a844ef3f9c

View file

@ -39,6 +39,7 @@ public class LLDBRunControl extends GDBRunControl_7_0 {
// FIXME: LLDB-MI doesn't implement -exec-jump so it will fail. So
// disable "move to address" (disassembly) for now.
rm.setData(false);
rm.done();
}
@Override
@ -47,5 +48,6 @@ public class LLDBRunControl extends GDBRunControl_7_0 {
// FIXME: LLDB-MI doesn't implement -exec-jump so it will fail. So
// disable "move to line" for now.
rm.setData(false);
rm.done();
}
}