MCPcopy Create free account
hub / github.com/Vector35/debugger / active_thread

Method active_thread

api/python/debuggercontroller.py:654–662  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

DebugThreadClass · 0.70

Tested by

no test coverage detected