Pause a running target. The call is blocking and only returns when the target stops.
(self)
| 1014 | return DebugStopReason(dbgcore.BNDebuggerRunToAndWait(self.handle, addr_list, len(address))) |
| 1015 | |
| 1016 | def pause_and_wait(self) -> None: |
| 1017 | """ |
| 1018 | Pause a running target. |
| 1019 | |
| 1020 | The call is blocking and only returns when the target stops. |
| 1021 | """ |
| 1022 | dbgcore.BNDebuggerPauseAndWait(self.handle) |
| 1023 | |
| 1024 | @property |
| 1025 | def adapter_type(self) -> str: |