| 514 | } |
| 515 | |
| 516 | bool 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 | |
| 533 | std::vector<DebugFrame> LldbAdapter::GetFramesOfThread(uint32_t tid) |
nothing calls this directly
no outgoing calls
no test coverage detected