gdb_continue
Resume program execution in Nintendo Switch debugging until reaching the next breakpoint or program completion. Use when debugging is paused.
Instructions
Continue execution until next breakpoint or completion. Only use when program is PAUSED.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The continue_execution method in GDBSession sends the -exec-continue command to GDB, which resumes execution of the debugged program.
def continue_execution(self) -> dict[str, Any]: """ Continue execution of the program. Waits for the program to stop (at a breakpoint, signal, or exit) before returning. The (gdb) prompt indicates GDB is ready for subsequent commands. Returns: Dict with status and execution result """ return self.execute_command("-exec-continue") - src/gdb_multiarch_mcp/server.py:299-303 (registration)The 'gdb_continue' tool is defined here for the MCP server.
Tool( name="gdb_continue", description="Continue execution until next breakpoint or completion. Only use when program is PAUSED.", inputSchema=NO_ARGS_SCHEMA, ), - src/gdb_multiarch_mcp/server.py:500-501 (handler)The tool handler for 'gdb_continue' calls session.continue_execution().
elif name == "gdb_continue": result = session.continue_execution()