Delete a breakpoint at the specified location.
clear [{func | line | *addr}] [if cond] [thread thread]
func |
The name of a function. |
line |
A line number in a source code file. |
addr |
An address. |
cond |
A conditional expression. Execution stops when the debugger hits the specified location and this condition evaluates to TRUE. |
thread |
A thread ID. |
This command removes any breakpoints at the specified line number or function entry. If you do not specify any parameter, it removes the breakpoints from the next instruction to be executed.
(idb) clear main
Copyright © 1996-2010, Intel Corporation. All rights reserved.