edb_set_breakpoint_ignore_count
Ignore a breakpoint a specified number of times before stopping, useful for skipping breakpoints in loops.
Instructions
Set the number of times a breakpoint should be ignored before stopping.
Equivalent to GDB's ignore command. Useful for skipping a breakpoint
N times (e.g., in a loop) before breaking.
Args: params (BreakpointIgnoreInput): Ignore - number (int): Breakpoint number - count (int): Skip count (0 = don't skip)
Returns: str: Ignore count result
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |