19 lines
440 B
Factor
Executable File
19 lines
440 B
Factor
Executable File
! Copyright (C) 2008 Slava Pestov.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
IN: io.unix.linux
|
|
USING: io.backend io.unix.backend io.unix.launcher io.unix.select
|
|
namespaces kernel assocs unix.process ;
|
|
|
|
TUPLE: linux-io ;
|
|
|
|
INSTANCE: linux-io unix-io
|
|
|
|
M: linux-io init-io ( -- )
|
|
<select-mx> mx set-global
|
|
start-wait-loop ;
|
|
|
|
M: linux-io wait-for-process ( pid -- status )
|
|
wait-for-pid ;
|
|
|
|
T{ linux-io } set-io-backend
|