Attach to a running process and wait until all debugger events are processed The PID of the target process must be set via DebuggerState.pid_attach
(self)
| 812 | return dbgcore.BNDebuggerAttach(self.handle) |
| 813 | |
| 814 | def attach_and_wait(self) -> bool: |
| 815 | """ |
| 816 | Attach to a running process and wait until all debugger events are processed |
| 817 | |
| 818 | The PID of the target process must be set via DebuggerState.pid_attach |
| 819 | """ |
| 820 | return dbgcore.BNDebuggerAttachAndWait(self.handle) |
| 821 | |
| 822 | def go(self) -> bool: |
| 823 | """ |