Resumes a thread by thread id. :param tid: thread id
(self, tid: int)
| 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]: |
nothing calls this directly
no outgoing calls
no test coverage detected