edb_breakpoint_commands
Set GDB commands to execute automatically when a breakpoint is hit, enabling data logging and control flow without interrupting execution.
Instructions
Set commands to execute when a breakpoint is hit.
Equivalent to GDB's commands keyword. Can run any GDB command
including print, continue, set, etc. Useful for logging data
without stopping.
Args: params (BreakpointCommandsInput): Commands - number (int): Breakpoint number - commands (list[str]): Commands (e.g., ['print rax', 'continue'])
Returns: str: Confirmation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |