| 187 | } |
| 188 | |
| 189 | void BreakpointManager::FinishUpdatingNodeBreakpoints() |
| 190 | { |
| 191 | auto pendingBps = std::move(this->pendingBreakpoints_); |
| 192 | if (pendingBps.get() != nullptr) { |
| 193 | Debug("BreakpointManager::FinishUpdatingNodeBreakpoints(): Syncing breakpoints in server thread"); |
| 194 | this->breakpoints_.swap(pendingBps); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | void BreakpointManager::ClearAllBreakpoints() |
| 199 | { |
no test coverage detected