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:
parent
323a39cc6d
commit
a844ef3f9c
1 changed files with 2 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue