| 151 | |
| 152 | |
| 153 | DebugStopReason DebuggerController::LaunchAndWait() |
| 154 | { |
| 155 | if (!m_targetControlMutex.try_lock()) |
| 156 | return InternalError; |
| 157 | |
| 158 | auto reason = LaunchAndWaitInternal(); |
| 159 | if (!m_userRequestedBreak && (reason != ProcessExited) && (reason != InternalError)) |
| 160 | NotifyStopped(reason); |
| 161 | |
| 162 | m_targetControlMutex.unlock(); |
| 163 | return reason; |
| 164 | } |
| 165 | |
| 166 | |
| 167 | bool DebuggerController::Attach() |
no outgoing calls
no test coverage detected