Function delete

Source
pub fn delete<EpollFd: AsFd, SourceFd: AsFd>(
    epoll: EpollFd,
    source: SourceFd,
) -> Result<()>
Available on crate feature event only.
Expand description

epoll_ctl(self, EPOLL_CTL_DEL, target, NULL)—Removes an element in a given epoll object.

§References