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

Method ConnectAndWait

core/debuggercontroller.cpp:233–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231
232
233DebugStopReason DebuggerController::ConnectAndWait()
234{
235 if (!m_targetControlMutex.try_lock())
236 return InternalError;
237
238 auto reason = ConnectAndWaitInternal();
239 if (!m_userRequestedBreak && (reason != ProcessExited) && (reason != InternalError))
240 NotifyStopped(reason);
241
242 m_targetControlMutex.unlock();
243 return reason;
244}
245
246
247bool DebuggerController::Execute()

Callers 2

BNDebuggerConnectAndWaitFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected