]> git.llucax.com Git - software/libev.git/blobdiff - ev_poll.c
handle pollnval
[software/libev.git] / ev_poll.c
index d0b72998377047e500e836c05008b9785b18353c..481202128768e30bc394f59a50b4eb26a4913de4 100644 (file)
--- a/ev_poll.c
+++ b/ev_poll.c
@@ -94,12 +94,15 @@ poll_poll (EV_P_ ev_tstamp timeout)
     }
 
   for (i = 0; i < pollcnt; ++i)
-    fd_event (
-      EV_A_
-      polls [i].fd,
-      (polls [i].revents & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0)
-      | (polls [i].revents & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0)
-    );
+    if (polls [i].revents & POLLNVAL)
+      fd_kill (EV_A_ polls [i].fd);
+    else
+      fd_event (
+        EV_A_
+        polls [i].fd,
+        (polls [i].revents & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0)
+        | (polls [i].revents & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0)
+      );
 }
 
 static int