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

Method StepOverAndWait

core/debuggercontroller.cpp:579–590  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

577
578
579DebugStopReason DebuggerController::StepOverAndWait(BNFunctionGraphType il)
580{
581 if (!m_targetControlMutex.try_lock())
582 return InternalError;
583
584 auto reason = StepOverIL(il);
585 if (!m_userRequestedBreak && (reason != ProcessExited))
586 NotifyStopped(reason);
587
588 m_targetControlMutex.unlock();
589 return reason;
590}
591
592
593DebugStopReason DebuggerController::EmulateStepReturnAndWait()

Callers 2

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected