factor/extra/io/unix/unix.factor

13 lines
375 B
Factor
Raw Normal View History

2008-01-18 19:43:14 -05:00
USING: io.unix.backend io.unix.files io.unix.sockets
io.unix.launcher io.unix.mmap io.backend combinators namespaces
system vocabs.loader ;
{
2008-01-18 20:29:43 -05:00
! kqueue is a work in progress
! { [ macosx? ] [ "io.unix.backend.kqueue" ] }
! { [ bsd? ] [ "io.unix.backend.kqueue" ] }
2008-01-18 19:43:14 -05:00
{ [ unix? ] [ "io.unix.backend.select" ] }
} cond require
2007-09-20 18:09:08 -04:00
T{ unix-io } io-backend set-global