| 1272 | |
| 1273 | |
| 1274 | void DebuggerController::CleanUpDisabledEvent() |
| 1275 | { |
| 1276 | std::unique_lock<std::recursive_mutex> lock(m_callbackMutex); |
| 1277 | for (const auto index : m_disabledCallbacks) |
| 1278 | { |
| 1279 | RemoveEventCallbackInternal(index); |
| 1280 | } |
| 1281 | m_disabledCallbacks.clear(); |
| 1282 | } |
| 1283 | |
| 1284 | |
| 1285 | void DebuggerController::NotifyStopped(DebugStopReason reason, void* data) |
nothing calls this directly
no outgoing calls
no test coverage detected