clear

Clear breakpoint at the specified line or function.

Syntax

clear [function|line]
Note:
  1. function - deletes any breakpoints set at entry to the specified function.
  2. line - deletes any breakpoints set at or within the code of the line specified by number.

Usage

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.

Example

(fgldb) clear mymodule:5  
Deleted breakpoint 2 
(fgldb)