epoll_create1

Creates an epoll instance.

version(linux)
extern (C) @nogc nothrow
int
epoll_create1
(
int flags
)

Parameters

flags int

a specified flag. If flags is 0, then, other than the fact that the obsolete size argument is dropped, epoll_create1() is the same as epoll_create().

Return Value

Type: int

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

See Also

epoll_create (int size)

Meta