| 1200 | |
| 1201 | |
| 1202 | bool DebuggerController::RemoveEventCallback(size_t index) |
| 1203 | { |
| 1204 | std::unique_lock<std::recursive_mutex> lock(m_callbackMutex); |
| 1205 | m_disabledCallbacks.insert(index); |
| 1206 | return RemoveEventCallbackInternal(index); |
| 1207 | } |
| 1208 | |
| 1209 | |
| 1210 | bool DebuggerController::RemoveEventCallbackInternal(size_t index) |
no outgoing calls
no test coverage detected