| 219 | |
| 220 | |
| 221 | std::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 | |
| 234 | bool DebuggerThreads::SuspendThread(std::uint32_t tid) |