The active thread of the target. (read/write) :getter: returns the active thread of the target :setter: sets the active thread of the target
(self)
| 652 | |
| 653 | @property |
| 654 | def active_thread(self) -> DebugThread: |
| 655 | """ |
| 656 | The active thread of the target. (read/write) |
| 657 | |
| 658 | :getter: returns the active thread of the target |
| 659 | :setter: sets the active thread of the target |
| 660 | """ |
| 661 | active_thread = dbgcore.BNDebuggerGetActiveThread(self.handle) |
| 662 | return DebugThread(active_thread.m_tid, active_thread.m_rip) |
| 663 | |
| 664 | @active_thread.setter |
| 665 | def active_thread(self, thread: DebugThread) -> None: |
nothing calls this directly
no test coverage detected