gdb_continue
Resume execution of a paused GDB debugging session until the next breakpoint or program completion. Use only when already paused; requires session ID from gdb_start_session.
Instructions
Continue execution of the program until next breakpoint or completion. IMPORTANT: Only use this when the program is PAUSED (e.g., at a breakpoint). If the program hasn't been started yet, use gdb_execute_command with 'run' instead. If the program is already running, this will fail - use gdb_interrupt to pause it first. Requires session_id parameter (obtained from gdb_start_session).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | Session ID from gdb_start_session | |
| timeout_sec | No | Seconds to wait for the program to stop again |