The OpenD Programming Language

epoll_create

Creates an epoll instance.

version(linux)
extern (C) @nogc nothrow
int
epoll_create
(
int size
)

Parameters

size int

a hint specifying the number of file descriptors to be associated with the new instance. T

Return Value

Type: int

an fd for the new instance. The fd returned by epoll_create() should be closed with close().

See Also

epoll_create1 (int flags)

Meta