| 791 | |
| 792 | |
| 793 | bool DebuggerController::SuspendThread(std::uint32_t tid) |
| 794 | { |
| 795 | auto result = m_state->GetThreads()->SuspendThread(tid); |
| 796 | if (!result) |
| 797 | return false; |
| 798 | |
| 799 | DebuggerEvent event; |
| 800 | event.type = ThreadStateChangedEvent; |
| 801 | PostDebuggerEvent(event); |
| 802 | |
| 803 | return result; |
| 804 | } |
| 805 | |
| 806 | bool DebuggerController::ResumeThread(std::uint32_t tid) |
| 807 | { |
nothing calls this directly
no test coverage detected