summaryrefslogtreecommitdiff
path: root/ev_poll.c
diff options
context:
space:
mode:
authorroot <root>2008-04-10 06:48:12 +0000
committerroot <root>2008-04-10 06:48:12 +0000
commit64f501be7e40906b9b91af86e1ceb1b770ad01ea (patch)
tree57aa7fe99cec738a7ffb6bb3c729f477a1c73f60 /ev_poll.c
parenteef565ed29c0653e1fbb08ac193abfbce9929267 (diff)
*** empty log message ***
Diffstat (limited to 'ev_poll.c')
-rw-r--r--ev_poll.c29
1 files changed, 17 insertions, 12 deletions
diff --git a/ev_poll.c b/ev_poll.c
index a8fdebc..48d8593 100644
--- a/ev_poll.c
+++ b/ev_poll.c
@@ -86,7 +86,7 @@ poll_modify (EV_P_ int fd, int oev, int nev)
static void
poll_poll (EV_P_ ev_tstamp timeout)
{
- int i;
+ struct pollfd *p;
int res = poll (polls, pollcnt, (int)ceil (timeout * 1000.));
if (expect_false (res < 0))
@@ -98,17 +98,22 @@ poll_poll (EV_P_ ev_tstamp timeout)
else if (errno != EINTR)
syserr ("(libev) poll");
}
- else if (res > 0)
- for (i = 0; i < pollcnt; ++i)
- if (expect_false (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)
- );
+
+ for (p = polls; res; ++p)
+ if (expect_false (p->revents)) /* this expect is debatable */
+ {
+ --res;
+
+ if (expect_false (p->revents & POLLNVAL))
+ fd_kill (EV_A_ p->fd);
+ else
+ fd_event (
+ EV_A_
+ p->fd,
+ (p->revents & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0)
+ | (p->revents & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0)
+ );
+ }
}
int inline_size