| 324 | |
| 325 | |
| 326 | bool DebuggerController::Go() |
| 327 | { |
| 328 | // This is an API function of the debugger. We only do these checks at the API level. |
| 329 | if (!CanResumeTarget()) |
| 330 | return false; |
| 331 | |
| 332 | std::thread([&]() { GoAndWait(); }).detach(); |
| 333 | |
| 334 | return true; |
| 335 | } |
| 336 | |
| 337 | |
| 338 | DebugStopReason DebuggerController::GoAndWait() |
no test coverage detected