| 743 | } |
| 744 | |
| 745 | std::uint32_t DbgEngAdapter::GetActiveThreadId() const |
| 746 | { |
| 747 | unsigned long current_tid {}; |
| 748 | if (this->m_debugSystemObjects->GetCurrentThreadId(¤t_tid) != S_OK) |
| 749 | return {}; |
| 750 | |
| 751 | return current_tid; |
| 752 | } |
| 753 | |
| 754 | bool DbgEngAdapter::SetActiveThread(const DebugThread& thread) |
| 755 | { |