The debugger / Debugger commands |
The continue command continues the execution of the program after a breakpoint.
continue [ignore-count]
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.
(fgldb) continue <..program output..> Program exited normally.