| 773 | } |
| 774 | |
| 775 | bool DbgEngAdapter::ResumeThread(std::uint32_t tid) |
| 776 | { |
| 777 | std::string resumeCmd = fmt::format("~{}u", tid); |
| 778 | InvokeBackendCommand(resumeCmd); |
| 779 | return true; |
| 780 | } |
| 781 | |
| 782 | |
| 783 | DebugBreakpoint DbgEngAdapter::AddBreakpoint(const std::uintptr_t address, unsigned long breakpoint_flags) |
nothing calls this directly
no outgoing calls
no test coverage detected