Reference / Supported debug commands |
Clear breakpoint at the specified line or function.
clear [function|line]
With the clear command you can delete specific breakpoints in your program. Use the clear command with no arguments to delete any breakpoints at the next instruction to be executed in the selected stack frame.
See the delete command to delete individual breakpoints by specifying their breakpoint numbers.
(fgldb) clear mymodule:5 Deleted breakpoint 2 (fgldb)