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

Method LaunchAndWait

core/debuggercontroller.cpp:153–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151
152
153DebugStopReason DebuggerController::LaunchAndWait()
154{
155 if (!m_targetControlMutex.try_lock())
156 return InternalError;
157
158 auto reason = LaunchAndWaitInternal();
159 if (!m_userRequestedBreak && (reason != ProcessExited) && (reason != InternalError))
160 NotifyStopped(reason);
161
162 m_targetControlMutex.unlock();
163 return reason;
164}
165
166
167bool DebuggerController::Attach()

Callers 2

BNDebuggerLaunchAndWaitFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected