diff options
author | root <root> | 2011-12-18 17:47:23 +0000 |
---|---|---|
committer | root <root> | 2011-12-18 17:47:23 +0000 |
commit | 6e8b65d3bcd8ea5604b3ec45681c67746a5a4772 (patch) | |
tree | 3cff261c8bea5e0b0936e502fb38057e002b479d | |
parent | 1538571fb1f09ace6bcafba2b53c86a1e2881991 (diff) |
*** empty log message ***
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | ev_epoll.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -23,6 +23,7 @@ TODO: memory fences for clang - strategically import macros from libecb and mark rarely-used functions as cache-cold (saving almost 2k code size on typical amd64 setups). - add Symbols.ev and Symbols.event files, that were missing. + - fix backend_mintime value for epoll (was 1/1024, is 1/1000 now). 4.04 Wed Feb 16 09:01:51 CET 2011 - fix two problems in the native win32 backend, where reuse of fd's @@ -247,7 +247,7 @@ epoll_init (EV_P_ int flags) fcntl (backend_fd, F_SETFD, FD_CLOEXEC); - backend_mintime = 1./1024.; /* epoll does sometimes return early, this is just to avoid the worst */ + backend_mintime = 1e-3; /* epoll does sometimes return early, this is just to avoid the worst */ backend_modify = epoll_modify; backend_poll = epoll_poll; |