summaryrefslogtreecommitdiff
path: root/ev_poll.c
diff options
context:
space:
mode:
authorroot <root>2007-11-06 00:10:04 +0000
committerroot <root>2007-11-06 00:10:04 +0000
commitdeff62d26ff4c1324816c04c0c6db1e4db435870 (patch)
treea87ff66d97dd24912b1eee812549f8d52ea41f5b /ev_poll.c
parent22c618bcb055597260be9be3a5815e08a4cea996 (diff)
better error handling
Diffstat (limited to 'ev_poll.c')
-rw-r--r--ev_poll.c33
1 files changed, 17 insertions, 16 deletions
diff --git a/ev_poll.c b/ev_poll.c
index b58ce82..e809ddd 100644
--- a/ev_poll.c
+++ b/ev_poll.c
@@ -75,27 +75,28 @@ poll_modify (EV_P_ int fd, int oev, int nev)
static void
poll_poll (EV_P_ ev_tstamp timeout)
{
+ int i;
int res = poll (polls, pollcnt, ceil (timeout * 1000.));
- if (res > 0)
- {
- int i;
-
- 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)
- );
- }
- else if (res < 0)
+ if (res < 0)
{
if (errno == EBADF)
fd_ebadf (EV_A);
- else if (errno == ENOMEM)
+ else if (errno == ENOMEM && !syserr_cb)
fd_enomem (EV_A);
+ else if (errno != EINTR)
+ syserr ();
+
+ return;
}
+
+ 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)
+ );
}
static int
@@ -114,6 +115,6 @@ poll_init (EV_P_ int flags)
static void
poll_destroy (EV_P)
{
- free (pollidxs);
- free (polls);
+ ev_free (pollidxs);
+ ev_free (polls);
}