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:
parent
424cf54073
commit
7042d486ff
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue