Attach to a running process The PID of the target process must be set via DebuggerState.pid_attach
(self)
| 804 | dbgcore.BNDebuggerLaunchOrConnect(self.handle) |
| 805 | |
| 806 | def attach(self) -> bool: |
| 807 | """ |
| 808 | Attach to a running process |
| 809 | |
| 810 | The PID of the target process must be set via DebuggerState.pid_attach |
| 811 | """ |
| 812 | return dbgcore.BNDebuggerAttach(self.handle) |
| 813 | |
| 814 | def attach_and_wait(self) -> bool: |
| 815 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected