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

Method ResumeThread

core/adapters/lldbadapter.cpp:516–530  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

514}
515
516bool LldbAdapter::ResumeThread(std::uint32_t tid)
517{
518 SBError error;
519 SBThread thread = m_process.GetThreadByID(tid);
520 if (!thread.IsValid())
521 return false;
522
523 if (!thread.Resume(error))
524 return false;
525
526 if (!error.Success())
527 return false;
528
529 return true;
530}
531
532
533std::vector<DebugFrame> LldbAdapter::GetFramesOfThread(uint32_t tid)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected