continue
The continue
command continues the execution of the program after a
breakpoint.
Syntax
continue [
ignore-count ]
- 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.
c
is an alias for the continue
command.
Example
(fgldb) continue
...
(program output)
...
Program exited normally.