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

Proces a suspended event even if there is no threads.

This commit is contained in:
Mikhail Khodjaiants 2003-11-25 16:56:15 +00:00
parent a3be5d94ad
commit 9e8e96370e
2 changed files with 18 additions and 11 deletions

View file

@ -1,15 +1,21 @@
2003-11-21 Mikhail Khodjaiants
Proces a suspended event even if there is no threads.
* src/org/eclipse/cdt/debug/mi/core/cdi/EventManager.java
2003-11-22 Alain Magloire
In MISession constructor if the initialization fails shutdown
the Tx/RX/Event threads.
In MIPlugin if the initialization fails shutdown the pty console.
Ditto for GDBDebugger/GDBServerDebugger/CygwinGDBDebugger.
* src/org/eclipse/cdt/debug/mi/core/MIPlugin.java
* src/org/eclipse/cdt/debug/mi/core/MISession.java
* src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java
* src/org/eclipse/cdt/debug/mi/core/GDBServerDebugger.java
* src/org/eclipse/cdt/debug/mi/core/CygwinGDBDebugger.java
In MISession constructor if the initialization fails shutdown
the Tx/RX/Event threads.
In MIPlugin if the initialization fails shutdown the pty console.
Ditto for GDBDebugger/GDBServerDebugger/CygwinGDBDebugger.
* src/org/eclipse/cdt/debug/mi/core/MIPlugin.java
* src/org/eclipse/cdt/debug/mi/core/MISession.java
* src/org/eclipse/cdt/debug/mi/core/GDBDebugger.java
* src/org/eclipse/cdt/debug/mi/core/GDBServerDebugger.java
* src/org/eclipse/cdt/debug/mi/core/CygwinGDBDebugger.java
2003-11-21 Alain Magloire

View file

@ -277,10 +277,11 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
if (cthread != null) {
cthread.getCurrentStackFrame();
} else {
return false;
return true;
}
} catch (CDIException e1) {
//e1.printStackTrace();
return true;
}
}