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

Method AttachAndWait

core/debuggercontroller.cpp:193–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191
192
193DebugStopReason DebuggerController::AttachAndWait()
194{
195 if (!m_targetControlMutex.try_lock())
196 return InternalError;
197
198 auto reason = AttachAndWaitInternal();
199 if (!m_userRequestedBreak && (reason != ProcessExited) && (reason != InternalError))
200 NotifyStopped(reason);
201
202 m_targetControlMutex.unlock();
203 return reason;
204}
205
206
207bool DebuggerController::Connect()

Callers 2

BNDebuggerAttachAndWaitFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected