diff options
author | root <root> | 2010-05-10 20:01:45 +0000 |
---|---|---|
committer | root <root> | 2010-05-10 20:01:45 +0000 |
commit | c4d4d77af33fe5c42a85ad781059e2eabcca14d3 (patch) | |
tree | 288b966e06d096d0a5f640e1c7f2f1fc8b6dd400 | |
parent | 66262f3aa28b34b483430dbe9250966274a4cb06 (diff) |
*** empty log message ***
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | event.c | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -7,6 +7,8 @@ TODO: EV_USE__XXX default with config, document - "PORTING FROM LIBEV 3.X TO 4.X" (in ev.pod) is recommended reading. - ev_embed_stop did not correctly stop the watcher (very good testcase by Vladimir Timofeev). + - fix a bug where a timeout of zero caused the timer not to fire + in the libevent emulation (testcase by Péter Szabó). - applied win32 fixes by Michael Lenaghan (also James Mansion). - replace EV_MINIMAL by EV_FEATURES. - prefer EPOLL_CTL_ADD over EPOLL_CTL_MOD in some more cases, as it @@ -74,7 +74,10 @@ static ev_tstamp ev_tv_get (struct timeval *tv) { if (tv) - return tv->tv_sec + tv->tv_usec * 1e-6; + { + ev_tstamp after = tv->tv_sec + tv->tv_usec * 1e-6; + return after ? after : 1e-6; + } else return -1.; } |