| 474 | |
| 475 | |
| 476 | uint32_t LldbAdapter::GetActiveThreadId() const |
| 477 | { |
| 478 | SBThread thread = m_process.GetSelectedThread(); |
| 479 | if (!thread.IsValid()) |
| 480 | return 0; |
| 481 | |
| 482 | auto tid = thread.GetThreadID(); |
| 483 | // TODO: we should probably change the return value to uint64_t |
| 484 | return tid; |
| 485 | } |
| 486 | |
| 487 | |
| 488 | bool LldbAdapter::SetActiveThread(const DebugThread& thread) |
nothing calls this directly
no outgoing calls
no test coverage detected