| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Libevent
Revision: 945
Author: nprovos
Date: 30 Oct 2008 15:40:35
Changes:from trunk: clear the timer cache on entering event loop; reported by Victor Chang
Files:| ... | ...@@ -472,6 +472,9 @@ | |
| 472 | 472 | struct timeval *tv_p; |
| 473 | 473 | int res, done; |
| 474 | 474 | |
| 475 | /* clear time cache */ | |
| 476 | base->tv_cache.tv_sec = 0; | |
| 477 | ||
| 475 | 478 | if (&base->sig.ev_signal_added) |
| 476 | 479 | evsignal_base = base; |
| 477 | 480 | done = 0; |
| ... | ...@@ -1,5 +1,6 @@ | |
| 1 | 1 | Changes in 1.4.9-stable: |
| 2 | 2 | o event_add would not return error for some backends; from Dean McNamee |
| 3 | o Clear the timer cache on entering the event loop; reported by Victor Chang | |
| 3 | 4 | |
| 4 | 5 | Changes in 1.4.8-stable: |
| 5 | 6 | o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov. |