init-io ( -- )
Factor documentation > Factor handbook > Input and output > Non-blocking I/O implementation
Prev:io-backend
Next:init-stdio ( -- )


Vocabulary
io.backend

Generic word contract
Initializes the I/O system. Called on startup.

Definition
IN: io.backend

HOOK: init-io io-backend ( -- )


Methods
USING: io.backend ;

M: c-io-backend init-io ;


USING: io.backend io.backend.unix.multiplexers
io.backend.unix.multiplexers.epoll namespaces system ;

M: linux init-io <epoll-mx> mx set-global ;