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

Method GoAndWait

core/debuggercontroller.cpp:338–349  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336
337
338DebugStopReason DebuggerController::GoAndWait()
339{
340 if (!m_targetControlMutex.try_lock())
341 return InternalError;
342
343 auto reason = GoAndWaitInternal();
344 if (!m_userRequestedBreak && (reason != ProcessExited))
345 NotifyStopped(reason);
346
347 m_targetControlMutex.unlock();
348 return reason;
349}
350
351
352DebugStopReason DebuggerController::StepIntoIL(BNFunctionGraphType il)

Callers 2

BNDebuggerGoAndWaitFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected