Launch the target and wait for all debugger events to be processed
(self)
| 732 | return dbgcore.BNDebuggerLaunch(self.handle) |
| 733 | |
| 734 | def launch_and_wait(self) -> bool: |
| 735 | """ |
| 736 | Launch the target and wait for all debugger events to be processed |
| 737 | """ |
| 738 | return dbgcore.BNDebuggerLaunchAndWait(self.handle) |
| 739 | |
| 740 | def restart(self) -> None: |
| 741 | """ |
no outgoing calls