[][src]Function linux::syscall::epoll_create

pub fn epoll_create(flags: c_int) -> c_int

Creates a new epoll instance.

[argument, flags] The flags to be used for creating the file descriptor.

[return_value] Returns the file descriptor or an error value.

= Remarks

Unless lrs was compiled with the no-auto-cloexec flag, this function automatically adds the EPOLL_CLOEXEC flag.

= See also

  • link:man:epoll_create1(2)