1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

[292300] MIProcessAdapter doesn't destroy process even if launch timed out

This commit is contained in:
John Cortell 2009-10-14 17:55:03 +00:00
parent 424cf54073
commit 7042d486ff

View file

@ -91,7 +91,7 @@ public class MIProcessAdapter implements MIProcess {
if (monitor.isCanceled()) {
pgdb.destroy();
throw new OperationCanceledException();
} else if (timepass > launchTimeout) {
} else if (timepass >= launchTimeout) {
pgdb.destroy();
String message = MIPlugin.getResourceString("src.GDBDebugger.Error_launch_timeout"); //$NON-NLS-1$
throw new IOException(message);