mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 21:05:37 +02:00
lldb: Add some comments
Change-Id: I82a825e8a3d95e895131857d3217c71be2072208 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
parent
b868b50c37
commit
064ce187b6
1 changed files with 2 additions and 1 deletions
|
@ -59,7 +59,7 @@ public class LLDBProcesses extends GDBProcesses_7_4 {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void getRunningProcesses(IDMContext dmc, DataRequestMonitor<IProcessDMContext[]> rm) {
|
public void getRunningProcesses(IDMContext dmc, DataRequestMonitor<IProcessDMContext[]> rm) {
|
||||||
// '-list-thread-groups --available' is not supported by lldm-mi so we
|
// FIXME '-list-thread-groups --available' is not supported by lldm-mi so we
|
||||||
// fall back to CDT Core's implementation of listing running processes.
|
// fall back to CDT Core's implementation of listing running processes.
|
||||||
// This works just like GDBProcesses#getRunningProcesses.
|
// This works just like GDBProcesses#getRunningProcesses.
|
||||||
|
|
||||||
|
@ -115,6 +115,7 @@ public class LLDBProcesses extends GDBProcesses_7_4 {
|
||||||
// yet so the process names map will be empty. This can happen when
|
// yet so the process names map will be empty. This can happen when
|
||||||
// doing local debugging but not attach mode.
|
// doing local debugging but not attach mode.
|
||||||
if (fProcessNames.isEmpty()) {
|
if (fProcessNames.isEmpty()) {
|
||||||
|
// FIXME: This triggers a double done()!! (Bug 510833)
|
||||||
getRunningProcesses(dmc, new DataRequestMonitor<>(getExecutor(), rm));
|
getRunningProcesses(dmc, new DataRequestMonitor<>(getExecutor(), rm));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue