MCPcopy Create free account
hub / github.com/Vector35/debugger / eventHandler

Method eventHandler

core/processview.cpp:176–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174
175
176void DebugProcessView::eventHandler(const DebuggerEvent &event)
177{
178 switch (event.type)
179 {
180 case TargetStoppedEventType:
181 // We should not call MarkDirty() in case of a TargetExitedEvent, since the debugger binary view is about to be
182 // deleted. And it can cause a crash in certain cases.
183 MarkDirty();
184 break;
185 case ForceMemoryCacheUpdateEvent:
186 ForceMemoryCacheUpdate();
187 break;
188 default:
189 break;
190 }
191}
192
193
194DebugNullView::DebugNullView(BinaryView* parent) :

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected