| 1283 | |
| 1284 | |
| 1285 | void 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 | |
| 1295 | void DebuggerController::NotifyError(const std::string& error, const std::string& shortError, void* data) |
nothing calls this directly
no outgoing calls
no test coverage detected