Re: interrupt sequence for win32forth
- From: Jos van de Ven <josv@xxxxxx>
- Date: Wed, 28 Mar 2007 18:24:20 +0200
Mike wrote:
Hi, I'm using win32forth for a project and am having a problem with
interrupting an infinite loop. CTRL-C doesn't work, but is there another
control sequence for breaking the infinite loop? Thanks.
--
Mike
.
: test ( - ) \ Hit escape to stop
0
begin key?
if key k_esc =
if drop exit
then
then 1+ dup .
again ;
test
\s Jos
==
4ePost: 506 bytes in mail. Elapsed time to buffer: .000075 sec.
.
Relevant Pages
- Re: interrupt sequence for win32forth
... interrupting an infinite loop. ... CTRL-C doesn't work, but is there another ... control sequence for breaking the infinite loop? ... (comp.lang.forth) - interrupt sequence for win32forth
... I'm using win32forth for a project and am having a problem with interrupting an infinite loop. ... CTRL-C doesn't work, but is there another control sequence for breaking the infinite loop? ... (comp.lang.forth) - Abort a script containing an infinite loop - how to cleanup?
... I have to run a matlab script containing an infinite loop ... it can be aborted by CTRL-C. ... How can I automatically execute some code for cleaning up ... (comp.soft-sys.matlab) - Re: Infinite loop in tcp_output on RELENG_5
... > gone into an infinite loop in the tcp_outputfunction (repeatedly ... > breaking into DDB and continuing, I can see it at different points in ... > loop back to the again label, ... (freebsd-net) - Re: Infinite loop in tcp_output on RELENG_5
... > gone into an infinite loop in the tcp_outputfunction (repeatedly ... > breaking into DDB and continuing, I can see it at different points in ... > loop back to the again label, ... (freebsd-current) |
|