| 766 | |
| 767 | |
| 768 | bool DbgEngAdapter::SuspendThread(std::uint32_t tid) |
| 769 | { |
| 770 | std::string suspendCmd = fmt::format("~{}f", tid); |
| 771 | InvokeBackendCommand(suspendCmd); |
| 772 | return true; |
| 773 | } |
| 774 | |
| 775 | bool DbgEngAdapter::ResumeThread(std::uint32_t tid) |
| 776 | { |
nothing calls this directly
no outgoing calls
no test coverage detected