| 804 | } |
| 805 | |
| 806 | bool DebuggerController::ResumeThread(std::uint32_t tid) |
| 807 | { |
| 808 | auto result = m_state->GetThreads()->ResumeThread(tid); |
| 809 | if (!result) |
| 810 | return false; |
| 811 | |
| 812 | DebuggerEvent event; |
| 813 | event.type = ThreadStateChangedEvent; |
| 814 | PostDebuggerEvent(event); |
| 815 | |
| 816 | return result; |
| 817 | } |
| 818 | |
| 819 | |
| 820 | std::vector<DebugFrame> DebuggerController::GetFramesOfThread(uint64_t tid) |
nothing calls this directly
no test coverage detected