You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a missing feature of our interface. We had a similar problem with kill (see #445). Feel free to create a PR to fix this. We will incorporate it, even if it is a breaking change. We should probably check in the new implementation of epoll_ctl, whether event may be None (or NULL in C) depending on the other arguments.
look at this function:
fn epoll_ctl(epfd: RawFd, op: EpollOp, fd: RawFd, event: &mut EpollEvent)
if EpollOp == EpollDel, the event could be a NULL in C. But how to pass a NULL ptr to epoll_ctl in rust?
The text was updated successfully, but these errors were encountered: