| 680 | |
| 681 | |
| 682 | bool DebuggerController::RunTo(const std::vector<uint64_t>& remoteAddresses) |
| 683 | { |
| 684 | // This is an API function of the debugger. We only do these checks at the API level. |
| 685 | if (!CanResumeTarget()) |
| 686 | return false; |
| 687 | |
| 688 | std::thread([&, remoteAddresses]() { RunToAndWait(remoteAddresses); }).detach(); |
| 689 | |
| 690 | return true; |
| 691 | } |
| 692 | |
| 693 | |
| 694 | DebugStopReason DebuggerController::RunToAndWait(const std::vector<uint64_t>& remoteAddresses) |
no test coverage detected