select

@extern
object select

POSIX select.h for Scala

See also:

The Open Group Base Specifications Issue 7, 2018 edition.

class Object
trait Matchable
class Any
select.type

Type members

Types

type fd_set = CStruct1[CArray[CLongInt, _16]]
type time_t = time_t

Value members

Concrete methods

@name("scalanative_fd_clr")
def FD_CLR(fd: CInt, set: Ptr[fd_set]): Unit
@name("scalanative_fd_isset")
def FD_ISSET(fd: CInt, set: Ptr[fd_set]): CInt
@name("scalanative_fd_set")
def FD_SET(fd: CInt, set: Ptr[fd_set]): Unit
@name("scalanative_fd_setsize")
def FD_SETSIZE: CInt
@name("scalanative_fd_zero")
def FD_ZERO(set: Ptr[fd_set]): Unit
def pselect(nfds: CInt, readfds: Ptr[fd_set], writefds: Ptr[fd_set], exceptfds: Ptr[fd_set], timeout: Ptr[timespec], sigmask: sigset_t): CInt
@name("scalanative_select")
def select(nfds: CInt, readfds: Ptr[fd_set], writefds: Ptr[fd_set], exceptfds: Ptr[fd_set], timeout: Ptr[timeval]): CInt