mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 22:25:25 +02:00
Compilation fix after changes to DsfMemoryBlockRetrieval.
This commit is contained in:
parent
5f378a1751
commit
624f00aa98
1 changed files with 2 additions and 2 deletions
|
@ -167,9 +167,9 @@ public class TestLaunchDelegate extends AbstractCLaunchDelegate
|
|||
GDBControl gdbControl = tracker.getService(GDBControl.class);
|
||||
if (gdbControl != null) {
|
||||
IMemoryBlockRetrieval memRetrieval = new DsfMemoryBlockRetrieval(
|
||||
GDB_DEBUG_MODEL_ID, config, (IMemoryDMContext)gdbControl.getControlDMContext());
|
||||
GDB_DEBUG_MODEL_ID, config, launch.getSession());
|
||||
launch.getSession().registerModelAdapter(IMemoryBlockRetrieval.class, memRetrieval);
|
||||
((DsfMemoryBlockRetrieval) memRetrieval).initialize();
|
||||
((DsfMemoryBlockRetrieval) memRetrieval).initialize((IMemoryDMContext)gdbControl.getControlDMContext());
|
||||
}
|
||||
tracker.dispose();
|
||||
return null;
|
||||
|
|
Loading…
Add table
Reference in a new issue