| 928 | |
| 929 | |
| 930 | bool DebuggerController::Pause() |
| 931 | { |
| 932 | if (!(m_state->IsConnected() && m_state->IsRunning())) |
| 933 | return false; |
| 934 | |
| 935 | std::thread([&]() { PauseAndWait(); }).detach(); |
| 936 | |
| 937 | return true; |
| 938 | } |
| 939 | |
| 940 | |
| 941 | DebugStopReason DebuggerController::PauseAndWaitInternal() |
no test coverage detected