- fixed GH #230: Poco::Timer problem

- updated CHANGELOG and Release Notes
This commit is contained in:
Alex Fabijanic 2014-05-23 04:06:18 -05:00
parent b416df22fe
commit d39a353789
3 changed files with 12 additions and 1 deletions

View File

@ -70,6 +70,11 @@ Release 1.5.3 (2014-05-xx)
- fixed GH #290: Unicode support
- fixed GH #318: Logger local time doesn't automatically account for DST
- fixed GH #363: DateTimeParser tryParse/parse
- added HTMLForm Content-Length calculation (Rangel Reale)
- Make TemporaryFile append a slash to tempDir
- fixed GH #319 android build with cmake
- added hasDelegates() method to AbstractEvent
- fixed GH #230: Poco::Timer problem
Release 1.5.2 (2013-09-16)
==========================

View File

@ -164,7 +164,7 @@ void Timer::run()
}
while (sleep < 0);
if (_wakeUp.tryWait(sleep))
if (_wakeUp.tryWait(sleep > _periodicInterval ? _periodicInterval : sleep))
{
Poco::FastMutex::ScopedLock lock(_mutex);
_nextInvocation.update();

View File

@ -72,6 +72,12 @@ AAAIntroduction
- fixed GH #290: Unicode support
- fixed GH #318: Logger local time doesn't automatically account for DST
- fixed GH #363: DateTimeParser tryParse/parse
- added HTMLForm Content-Length calculation (Rangel Reale)
- Make TemporaryFile append a slash to tempDir
- Make TemporaryFile append a slash to tempDir
- fixed GH #319 android build with cmake
- added hasDelegates() method to AbstractEvent
- fixed GH #230: Poco::Timer problem
!!Incompatible Changes and Possible Transition Issues