MCPcopy Create free account
hub / github.com/Vector35/debugger / RunTo

Method RunTo

core/debuggercontroller.cpp:682–691  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

680
681
682bool 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
694DebugStopReason DebuggerController::RunToAndWait(const std::vector<uint64_t>& remoteAddresses)

Callers 1

BNDebuggerRunToFunction · 0.45

Calls 1

detachMethod · 0.80

Tested by

no test coverage detected