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

Method StepIntoAndWait

core/debuggercontroller.cpp:459–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

457
458
459DebugStopReason DebuggerController::StepIntoAndWait(BNFunctionGraphType il)
460{
461 if (!m_targetControlMutex.try_lock())
462 return InternalError;
463
464 auto reason = StepIntoIL(il);
465 if (!m_userRequestedBreak && (reason != ProcessExited))
466 NotifyStopped(reason);
467
468 m_targetControlMutex.unlock();
469 return reason;
470}
471
472
473DebugStopReason DebuggerController::StepOverIL(BNFunctionGraphType il)

Callers 2

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected