]> git.llucax.com Git - software/libev.git/blobdiff - ev_epoll.c
- have to re-check potentially closed fds regularly for epoll. this hurts
[software/libev.git] / ev_epoll.c
index 8bc8658d04178b78c62bd0064442eae0ac1a3ca2..4689f8d3b3baf8ad09992f1b8ec1f9b88d8f39e8 100644 (file)
@@ -42,7 +42,10 @@ epoll_modify (EV_P_ int fd, int oev, int nev)
       (nev & EV_READ ? EPOLLIN : 0)
       | (nev & EV_WRITE ? EPOLLOUT : 0);
 
-  epoll_ctl (epoll_fd, mode, fd, &ev);
+  if (epoll_ctl (epoll_fd, mode, fd, &ev))
+    if (errno != ENOENT /* on ENOENT the fd went away, so try to do the right thing */
+        || (nev && epoll_ctl (epoll_fd, EPOLL_CTL_ADD, fd, &ev)))
+      fd_kill (EV_A_ fd);
 }
 
 static void