continue

Continues the execution of the program after a breakpoint.

Syntax

c[ontinue] [ignore-count]
Note:
  1. ignore-count defines the number of times to ignore a breakpoint at this location.

Usage

The continue command continues the execution of the program until the program completes normally, another breakpoint is reached, or a signal is received.

Example

(fgldb) continue
  <..program output..>
Program exited normally.