signal
Sends an INTERRUPT or QUIT signal to the program.
Syntax
sig[nal] SIGINT
sig[nal] SIGQUIT
Usage
The signal SIGINT
command resumes execution of your program where it has stopped
but immediately sends an INTERRUPT signal. The source line that was current when the signal was
received is displayed.
Use signal SIGQUIT
to send a QUIT signal.
Example
(fgldb) signal SIGINT
Program exited normally.
16 for i = 1 to 10
(fgldb)