mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Fix for deferred breakpoint.
This commit is contained in:
parent
9797bc9040
commit
f0f94b3965
1 changed files with 1 additions and 2 deletions
|
@ -351,7 +351,6 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
|
||||||
}
|
}
|
||||||
// A new Libraries loaded, try to set the breakpoints.
|
// A new Libraries loaded, try to set the breakpoints.
|
||||||
if (eventList.size() > 0) {
|
if (eventList.size() > 0) {
|
||||||
boolean breakpointSet = false;
|
|
||||||
ICDIBreakpointManager manager = session.getBreakpointManager();
|
ICDIBreakpointManager manager = session.getBreakpointManager();
|
||||||
if (manager instanceof BreakpointManager) {
|
if (manager instanceof BreakpointManager) {
|
||||||
BreakpointManager bpMgr = (BreakpointManager)manager;
|
BreakpointManager bpMgr = (BreakpointManager)manager;
|
||||||
|
@ -458,7 +457,7 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
|
||||||
} catch (MIException e) {
|
} catch (MIException e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (miLevel > 0) {
|
if (miLevel >= 0) {
|
||||||
MIStackSelectFrame selectFrame = factory.createMIStackSelectFrame(miLevel);
|
MIStackSelectFrame selectFrame = factory.createMIStackSelectFrame(miLevel);
|
||||||
MIExecFinish finish = factory.createMIExecFinish();
|
MIExecFinish finish = factory.createMIExecFinish();
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue