1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-15 04:05:38 +02:00

[249223] Better comment to explain that ResumeWithoutSignal is not complete.

This commit is contained in:
Marc Khouzam 2010-03-12 02:25:54 +00:00
parent b898da879b
commit e68ed6d712

View file

@ -66,7 +66,10 @@ public class GdbResumeWithoutSignalCommand extends AbstractDebugCommand implemen
IRunControl runControl = fTracker.getService(IRunControl.class);
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 {
rm.done();
}