The exit code of the target (read-only) This is only meaningful after the target has executed and exited.
(self)
| 1288 | |
| 1289 | @property |
| 1290 | def exit_code(self) -> int: |
| 1291 | """ |
| 1292 | The exit code of the target (read-only) |
| 1293 | |
| 1294 | This is only meaningful after the target has executed and exited. |
| 1295 | """ |
| 1296 | return dbgcore.BNDebuggerGetExitCode(self.handle) |
| 1297 | |
| 1298 | def register_event_callback(self, callback: DebuggerEventCallback, name: str = '') -> int: |
| 1299 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected