| 158 | |
| 159 | |
| 160 | DebugThread DebuggerController::GetActiveThread() |
| 161 | { |
| 162 | BNDebugThread thread = BNDebuggerGetActiveThread(m_object); |
| 163 | DebugThread result; |
| 164 | result.m_tid = thread.m_tid; |
| 165 | result.m_rip = thread.m_rip; |
| 166 | return result; |
| 167 | } |
| 168 | |
| 169 | |
| 170 | void DebuggerController::SetActiveThread(const DebugThread& thread) |
nothing calls this directly
no test coverage detected