mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-30 21:55:31 +02:00
call MIInferior.update in processSuspend()
This commit is contained in:
parent
423c7a7e50
commit
e0d210a7e3
1 changed files with 4 additions and 0 deletions
|
@ -24,6 +24,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDIVariableManager;
|
|||
import org.eclipse.cdt.debug.core.cdi.event.ICDIEvent;
|
||||
import org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||
import org.eclipse.cdt.debug.mi.core.MISession;
|
||||
import org.eclipse.cdt.debug.mi.core.cdi.event.ChangedEvent;
|
||||
import org.eclipse.cdt.debug.mi.core.cdi.event.CreatedEvent;
|
||||
import org.eclipse.cdt.debug.mi.core.cdi.event.DestroyedEvent;
|
||||
|
@ -281,6 +282,9 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
|
|||
if (srcMgr.isAutoUpdate()) {
|
||||
srcMgr.update();
|
||||
}
|
||||
// give a chance also to the underlying inferior.
|
||||
MISession mi = session.getMISession();
|
||||
mi.getMIInferior().update();
|
||||
} catch (CDIException e) {
|
||||
//System.out.println(e);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue