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

Method suspend_thread

api/python/debuggercontroller.py:668–674  ·  view source on GitHub ↗

Suspends a thread by thread id. :param tid: thread id

(self, tid: int)

Source from the content-addressed store, hash-verified

666 dbgcore.BNDebuggerSetActiveThread(self.handle, dbgcore.BNDebugThread(thread.tid, thread.rip))
667
668 def suspend_thread(self, tid: int) -> bool:
669 """
670 Suspends a thread by thread id.
671
672 :param tid: thread id
673 """
674 return dbgcore.BNDebuggerSuspendThread(self.handle, tid)
675
676 def resume_thread(self, tid: int) -> bool:
677 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected