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

Function BNDebuggerRunToAndWait

core/ffi.cpp:553–563  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

551
552
553BNDebugStopReason BNDebuggerRunToAndWait(
554 BNDebuggerController* controller, const uint64_t* remoteAddresses, size_t count)
555{
556 std::vector<uint64_t> addresses;
557 addresses.reserve(count);
558 for (size_t i = 0; i < count; i++)
559 {
560 addresses.push_back(remoteAddresses[i]);
561 }
562 return controller->object->RunToAndWait(addresses);
563}
564
565
566DebugStopReason BNDebuggerPauseAndWait(BNDebuggerController* controller)

Callers 1

RunToAndWaitMethod · 0.85

Calls 1

RunToAndWaitMethod · 0.45

Tested by

no test coverage detected