Set a breakpoint
breakpoint_setSet a breakpoint by file:line, symbol name, or address to halt execution at the desired code location, with optional condition or temporary flag.
Instructions
Sets a breakpoint by file:line (e.g. main.c:42), symbol name (e.g. main), or address (e.g. *0x08000200).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| location | Yes | ||
| condition | No | Conditional expression, e.g. 'count == 5' | |
| sessionId | Yes | ||
| temporary | No | Deleted automatically after the first hit (default: false) |