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

Method SuspendThread

core/debuggercontroller.cpp:793–804  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

791
792
793bool 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
806bool DebuggerController::ResumeThread(std::uint32_t tid)
807{

Callers

nothing calls this directly

Calls 1

GetThreadsMethod · 0.45

Tested by

no test coverage detected