mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Process the suspended event even if there is no threads
or stacks
This commit is contained in:
parent
9dc3aa63e5
commit
e491b3048f
1 changed files with 2 additions and 1 deletions
|
@ -277,10 +277,11 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
|
||||||
if (cthread != null) {
|
if (cthread != null) {
|
||||||
cthread.getCurrentStackFrame();
|
cthread.getCurrentStackFrame();
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
} catch (CDIException e1) {
|
} catch (CDIException e1) {
|
||||||
//e1.printStackTrace();
|
//e1.printStackTrace();
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue