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