mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-19 00:46:03 +01:00
- fixed GH #230: Poco::Timer problem
- updated CHANGELOG and Release Notes
This commit is contained in:
parent
b416df22fe
commit
d39a353789
@ -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)
|
||||
==========================
|
||||
|
@ -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();
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user