Try to use FD_CLOEXEC instead of mass-closing everywhere.
[ashd.git] / lib / mtio.c
index 367c61d..e4166f5 100644 (file)
@@ -63,7 +63,8 @@ static int regfd(struct blocker *bl)
 {
     struct blocker *o;
     struct epoll_event evd;
-
+    
+    memset(&evd, 0, sizeof(evd));
     evd.events = 0;
     if(bl->ev & EV_READ)
        evd.events |= EPOLLIN;
@@ -124,6 +125,7 @@ static void remfd(struct blocker *bl)
        if(epoll_ctl(epfd, EPOLL_CTL_DEL, bl->fd, NULL))
            flog(LOG_ERR, "epoll_del on fd %i: %s", bl->fd, strerror(errno));
     } else {
+       memset(&evd, 0, sizeof(evd));
        evd.events = 0;
        evd.data.fd = bl->fd;
        for(o = fdlist[bl->fd]; o; o = o->n2) {
@@ -174,10 +176,11 @@ void ioloop(void)
 {
     struct blocker *bl, *nbl;
     struct epoll_event evr[16];
-    int i, fd, nev, ev;
+    int i, fd, nev, ev, toval;
     time_t now, timeout;
     
     epfd = epoll_create(128);
+    fcntl(epfd, F_SETFD, FD_CLOEXEC);
     for(bl = blockers; bl; bl = nbl) {
        nbl = bl->n;
        if(regfd(bl))
@@ -190,7 +193,13 @@ void ioloop(void)
                timeout = bl->to;
        }
        now = time(NULL);
-       nev = epoll_wait(epfd, evr, sizeof(evr) / sizeof(*evr), timeout?((timeout - now) * 1000):-1);
+       if(timeout == 0)
+           toval = -1;
+       else if(timeout > now)
+           toval = (timeout - now) * 1000;
+       else
+           toval = 1000;
+       nev = epoll_wait(epfd, evr, sizeof(evr) / sizeof(*evr), toval);
        if(nev < 0) {
            if(errno != EINTR) {
                flog(LOG_CRIT, "ioloop: select errored out: %s", strerror(errno));
@@ -200,7 +209,6 @@ void ioloop(void)
            }
            continue;
        }
-       now = time(NULL);
        for(i = 0; i < nev; i++) {
            fd = evr[i].data.fd;
            ev = 0;
@@ -214,10 +222,14 @@ void ioloop(void)
                nbl = bl->n2;
                if((ev < 0) || (ev & bl->ev))
                    resume(bl->th, ev);
-               else if((bl->to != 0) && (bl->to <= now))
-                   resume(bl->th, 0);
            }
        }
+       now = time(NULL);
+       for(bl = blockers; bl; bl = nbl) {
+           nbl = bl->n;
+           if((bl->to != 0) && (bl->to <= now))
+               resume(bl->th, 0);
+       }
     }
     close(epfd);
     epfd = -1;