| 268 | |
| 269 | |
| 270 | void BNDebuggerSetActiveThread(BNDebuggerController* controller, BNDebugThread thread) |
| 271 | { |
| 272 | DebugThread activeThread; |
| 273 | activeThread.m_rip = thread.m_rip; |
| 274 | activeThread.m_tid = thread.m_tid; |
| 275 | |
| 276 | controller->object->SetActiveThread(activeThread); |
| 277 | } |
| 278 | |
| 279 | |
| 280 | bool BNDebuggerSuspendThread(BNDebuggerController* controller, uint32_t tid) |
no test coverage detected