diff options
| -rw-r--r-- | ev.pod | 2 | ||||
| -rw-r--r-- | ev_epoll.c | 2 | 
2 files changed, 3 insertions, 1 deletions
@@ -3584,7 +3584,7 @@ implementations for some libevent functions (such as logging, which is not  supported). It will also not define any of the structs usually found in  F<event.h> that are not directly supported by the libev core alone. -In stanbdalone mode, libev will still try to automatically deduce the +In standalone mode, libev will still try to automatically deduce the  configuration, but has to be more conservative.  =item EV_USE_MONOTONIC @@ -121,6 +121,8 @@ epoll_poll (EV_P_ ev_tstamp timeout)    int i;    int eventcnt; +  /* epoll wait times cannot be larger than (LONG_MAX - 999UL) / HZ msecs, which is below */ +  /* the default libev max wait time, however. */    EV_RELEASE_CB;    eventcnt = epoll_wait (backend_fd, epoll_events, epoll_eventmax, (int)ceil (timeout * 1000.));    EV_ACQUIRE_CB;  | 
