| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Libevent
Revision: 944
Author: nprovos
Date: 30 Oct 2008 15:38:31
Changes:clear the timer cache on entering event loop; reported by Victor Chang
Files:| ... | ...@@ -125,6 +125,7 @@ | |
| 125 | 125 | o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov. |
| 126 | 126 | o Add new utility functions to correctly observe and log winsock errors. |
| 127 | 127 | o Do not remove Accept-Encoding header |
| 128 | o Clear the timer cache on entering the event loop; reported by Victor Chang | |
| 128 | 129 | |
| 129 | 130 | Changes in 1.4.0: |
| 130 | 131 | o allow \r or \n individually to separate HTTP headers instead of the standard "\r\n"; from Charles Kerr. |
| ... | ...@@ -695,6 +695,9 @@ | |
| 695 | 695 | struct timeval *tv_p; |
| 696 | 696 | int res, done; |
| 697 | 697 | |
| 698 | /* clear time cache */ | |
| 699 | base->tv_cache.tv_sec = 0; | |
| 700 | ||
| 698 | 701 | if (&base->sig.ev_signal_added) |
| 699 | 702 | evsignal_base = base; |
| 700 | 703 | done = 0; |