1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

fixed terminate delay for corefile

This commit is contained in:
David Inglis 2004-10-20 15:05:06 +00:00
parent 2f84ab8078
commit 2b91044082
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-10-20 David Inglis
Fixed terminated delay for corefile
* mi/org/eclipse/cdt/debug/mi/core/MIInferior.java
2004-10-19 Alain Magloire
Fix Core Launching
* cdi/org/eclipse/cdt/debug/mi/core/cdi/model/Target.java

View file

@ -176,7 +176,7 @@ public class MIInferior extends Process {
session.postCommand(abort);
abort.getMIInfo();
setTerminated(abort.getToken(), true);
} else if (session.isCoreSession()){
} else if (session.isCoreSession() && !isTerminated()){
setTerminated(0, true);
}
}