disable

Disables the specified breakpoint.

Syntax

disable breakpoint
  1. breakpoint is the number assigned to the breakpoint by the debugger.

Usage

The disable command instructs the debugger to ignore the specified breakpoint when running the program.

Use the enable command to reactivate the breakpoint for the current debugger session.

Example

(fgldb) disable 1
(fgldb) run
Program exited normally.
(fgldb)