Safe Haskell | Safe-Infered |
---|
Interface to the select(2)
POSIX function.
Documentation
select :: [Fd] -> [Fd] -> [Fd] -> Timeout -> IO CIntSource
calls the
select
readFds writeFds exceptFds timeoutselect(2)
function with the file descriptors in readFds
as the
FD set to watch for read readiness, and similarly for writeFds
and exceptFds
, with timeout
specifying the timeout. The return
value is that of the call.