| 457 | |
| 458 | |
| 459 | DebugStopReason 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 | |
| 473 | DebugStopReason DebuggerController::StepOverIL(BNFunctionGraphType il) |
no outgoing calls
no test coverage detected