ignore (gdb mode only)

Set the ignore count of the specified breakpoint or watchpoint to the specified value.

Syntax

ignore ID count  

Parameters

ID

The ID number of the breakpoint. The ID number is an unsigned integer greater than 0 and assigned to a breakpoint by the debugger.

count

The number of encounters to be ignored. This number must be zero or greater.

Description

This command sets the ignore count for the specified breakpoint or watchpoint.

As long as the ignore count of a breakpoint or watchpoint is positive, execution does not stop there. Whenever execution encounters such a breakpoint or watchpoint, its ignore count is decreased by 1 and execution continues.

Note iconNote

Watchpoints are also referred to as data breakpoints.

Example

(idb) ignore 12 100

See Also


Submit feedback on this help topic

Copyright © 1996-2010, Intel Corporation. All rights reserved.