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

Method resume_thread

api/python/debuggercontroller.py:676–682  ·  view source on GitHub ↗

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

(self, tid: int)

Source from the content-addressed store, hash-verified

674 return dbgcore.BNDebuggerSuspendThread(self.handle, tid)
675
676 def resume_thread(self, tid: int) -> bool:
677 """
678 Resumes a thread by thread id.
679
680 :param tid: thread id
681 """
682 return dbgcore.BNDebuggerResumeThread(self.handle, tid)
683
684 @property
685 def modules(self) -> List[DebugModule]:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected