mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 12:15:47 +02:00
[249223] Better comment to explain that ResumeWithoutSignal is not complete.
This commit is contained in:
parent
b898da879b
commit
e68ed6d712
1 changed files with 4 additions and 1 deletions
|
@ -66,7 +66,10 @@ public class GdbResumeWithoutSignalCommand extends AbstractDebugCommand implemen
|
||||||
IRunControl runControl = fTracker.getService(IRunControl.class);
|
IRunControl runControl = fTracker.getService(IRunControl.class);
|
||||||
|
|
||||||
if (runControl != null) {
|
if (runControl != null) {
|
||||||
runControl.resume(dmc, rm);
|
// This call must be replaced by a new 'resumeWithoutSignal' or even better
|
||||||
|
// resumeWithSignal(0) which does not exist in the runControl service yet.
|
||||||
|
// But this method is currently disabled anyway, until proper support is available.
|
||||||
|
rm.done();
|
||||||
} else {
|
} else {
|
||||||
rm.done();
|
rm.done();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue