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

Method NotifyStopped

core/debuggercontroller.cpp:1285–1292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1283
1284
1285void DebuggerController::NotifyStopped(DebugStopReason reason, void* data)
1286{
1287 DebuggerEvent event;
1288 event.type = TargetStoppedEventType;
1289 event.data.targetStoppedData.reason = reason;
1290 event.data.targetStoppedData.data = data;
1291 PostDebuggerEvent(event);
1292}
1293
1294
1295void DebuggerController::NotifyError(const std::string& error, const std::string& shortError, void* data)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected