Set the ignore count of the specified breakpoint or watchpoint to the specified value.
ignore ID count
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. |
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.
Watchpoints are also referred to as data breakpoints.
(idb) ignore 12 100
Copyright © 1996-2010, Intel Corporation. All rights reserved.