| 258 | |
| 259 | |
| 260 | BNDebugThread BNDebuggerGetActiveThread(BNDebuggerController* controller) |
| 261 | { |
| 262 | DebugThread thread = controller->object->GetActiveThread(); |
| 263 | BNDebugThread result; |
| 264 | result.m_tid = thread.m_tid; |
| 265 | result.m_rip = thread.m_rip; |
| 266 | return result; |
| 267 | } |
| 268 | |
| 269 | |
| 270 | void BNDebuggerSetActiveThread(BNDebuggerController* controller, BNDebugThread thread) |
no test coverage detected