static void
epoll_poll (EV_P_ ev_tstamp timeout)
{
- int eventcnt = epoll_wait (epoll_fd, epoll_events, epoll_eventmax, ceil (timeout * 1000.));
int i;
+ int eventcnt = epoll_wait (epoll_fd, epoll_events, epoll_eventmax, (int)ceil (timeout * 1000.));
if (eventcnt < 0)
- return;
+ {
+ if (errno != EINTR)
+ syserr ("(libev) epoll_wait");
+
+ return;
+ }
for (i = 0; i < eventcnt; ++i)
fd_event (
/* if the receive array was full, increase its size */
if (expect_false (eventcnt == epoll_eventmax))
{
- free (epoll_events);
+ ev_free (epoll_events);
epoll_eventmax = array_roundsize (epoll_events, epoll_eventmax << 1);
- epoll_events = malloc (sizeof (struct epoll_event) * epoll_eventmax);
+ epoll_events = (struct epoll_event *)ev_malloc (sizeof (struct epoll_event) * epoll_eventmax);
}
}
method_poll = epoll_poll;
epoll_eventmax = 64; /* intiial number of events receivable per poll */
- epoll_events = malloc (sizeof (struct epoll_event) * epoll_eventmax);
+ epoll_events = (struct epoll_event *)ev_malloc (sizeof (struct epoll_event) * epoll_eventmax);
return EVMETHOD_EPOLL;
}
{
close (epoll_fd);
- free (epoll_events);
+ ev_free (epoll_events);
}
static void
epoll_fork (EV_P)
{
- epoll_fd = epoll_create (256);
+ close (epoll_fd);
+
+ while ((epoll_fd = epoll_create (256)) < 0)
+ syserr ("(libev) epoll_create");
+
fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
fd_rearm_all (EV_A);