MCPcopy Create free account
hub / github.com/Vector35/debugger / ResumeThread

Method ResumeThread

core/debuggercontroller.cpp:806–817  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

804}
805
806bool 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
820std::vector<DebugFrame> DebuggerController::GetFramesOfThread(uint64_t tid)

Callers

nothing calls this directly

Calls 1

GetThreadsMethod · 0.45

Tested by

no test coverage detected