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

Method RunToAndWait

core/debuggercontroller.cpp:694–705  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

692
693
694DebugStopReason DebuggerController::RunToAndWait(const std::vector<uint64_t>& remoteAddresses)
695{
696 if (!m_targetControlMutex.try_lock())
697 return InternalError;
698
699 auto reason = RunToAndWaitInternal(remoteAddresses);
700 if (!m_userRequestedBreak && (reason != ProcessExited))
701 NotifyStopped(reason);
702
703 m_targetControlMutex.unlock();
704 return reason;
705}
706
707
708bool DebuggerController::CreateDebuggerBinaryView()

Callers 2

BNDebuggerRunToAndWaitFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected