1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +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 2004-10-19 Alain Magloire
Fix Core Launching Fix Core Launching
* cdi/org/eclipse/cdt/debug/mi/core/cdi/model/Target.java * 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); session.postCommand(abort);
abort.getMIInfo(); abort.getMIInfo();
setTerminated(abort.getToken(), true); setTerminated(abort.getToken(), true);
} else if (session.isCoreSession()){ } else if (session.isCoreSession() && !isTerminated()){
setTerminated(0, true); setTerminated(0, true);
} }
} }