break

Sets a breakpoint at the specified line or function

Syntax

b[reak] { line | module:line | function }
Note:
  1. line is a source code line in the current module.
  2. module:line is a source code line in a specific module.
  3. function is a function name.

Usage

The break command sets a breakpoint at a given position in the program.

When the program is running, the debugger stops automatically at breakpoints defined by this command.

Example

(fgldb) break mymodule:5 
Breakpoint 2 at 0x00000000: file mymodule.4gl, line 5.