| 336 | |
| 337 | |
| 338 | DebugStopReason 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 | |
| 352 | DebugStopReason DebuggerController::StepIntoIL(BNFunctionGraphType il) |
no outgoing calls
no test coverage detected