factor/core/io/thread/thread.factor

15 lines
383 B
Factor
Raw Normal View History

2008-02-18 06:07:40 -05:00
! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: io.thread
USING: concurrency.threads io.backend namespaces init ;
: io-thread ( -- )
sleep-time io-multiplex yield io-thread ;
: start-io-thread ( -- )
[ io-thread ]
"I/O wait" spawn
\ io-thread set-global ;
[ start-io-thread ] "io.thread" add-init-hook