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:
parent
a3be5d94ad
commit
9e8e96370e
2 changed files with 18 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue