Reference / Supported debug commands |
Sends an INTERRUPT or QUIT signal to the program.
sig[nal] SIGINT
sig[nal] SIGQUIT
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.
(fgldb) signal SIGINT Program exited normally. 16 for i = 1 to 10 (fgldb)