]> git.llucax.com Git - software/libev.git/blobdiff - ev_select.c
add rpid/rstatus
[software/libev.git] / ev_select.c
index 46a77e208c06870d411f3cb50fdbcbc5cfa326fe..a0db3b6430cef3a115abce8906965fd901d1310b 100644 (file)
@@ -1,4 +1,6 @@
 /*
+ * libev select fd activity backend
+ *
  * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
  * All rights reserved.
  *
@@ -33,7 +35,9 @@
 #include <unistd.h>
 
 /* for unix systems */
-#include <sys/select.h>
+#ifndef WIN32
+# include <sys/select.h>
+#endif
 
 #include <string.h>
 #include <inttypes.h>
@@ -70,7 +74,8 @@ select_modify (int fd, int oev, int nev)
     vec_wi [offs] &= ~mask;
 }
 
-static void select_poll (ev_tstamp timeout)
+static void
+select_poll (ev_tstamp timeout)
 {
   struct timeval tv;
   int res;
@@ -113,11 +118,14 @@ static void select_poll (ev_tstamp timeout)
   else if (res < 0)
     {
       if (errno == EBADF)
-        fd_recheck ();
+        fd_ebadf ();
+      else if (errno == ENOMEM)
+        fd_enomem ();
     }
 }
 
-void select_init (int flags)
+static void
+select_init (int flags)
 {
   ev_method     = EVMETHOD_SELECT;
   method_fudge  = 1e-2; /* needed to compensate for select returning early, very conservative */
@@ -125,4 +133,3 @@ void select_init (int flags)
   method_poll   = select_poll;
 }
 
-