| 577 | |
| 578 | |
| 579 | DebugStopReason 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 | |
| 593 | DebugStopReason DebuggerController::EmulateStepReturnAndWait() |
no outgoing calls
no test coverage detected