1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-26 02:15:31 +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,3 +1,9 @@
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

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;
}
}