EpollCtlOp

epoll_ctl opcodes.

Values

ValueMeaning
EPOLL_CTL_ADD1

Register the target file descriptor fd on the epoll instance referred to by the file descriptor epfd and associate the event event with the internal file linked to fd.

EPOLL_CTL_DEL2

Remove (deregister) the target file descriptor fd from the epoll instance referred to by epfd. The event is ignored; it and can be null on Linux 2.6.9 or later.

EPOLL_CTL_MOD3

Change the event event associated with the target file descriptor fd.

Meta