MCPcopy Create free account
hub / github.com/Vector35/debugger / exit_code

Method exit_code

api/python/debuggercontroller.py:1290–1296  ·  view source on GitHub ↗

The exit code of the target (read-only) This is only meaningful after the target has executed and exited.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected