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

Method GetFramesOfThread

core/debuggerstate.cpp:221–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219
220
221std::vector<DebugFrame> DebuggerThreads::GetFramesOfThread(uint32_t tid)
222{
223 if (IsDirty())
224 Update();
225
226 auto iter = m_frames.find(tid);
227 if (iter != m_frames.end())
228 return iter->second;
229
230 return {};
231}
232
233
234bool DebuggerThreads::SuspendThread(std::uint32_t tid)

Callers 1

UpdateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected