diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-12-19 22:58:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-12-19 22:58:22 +0000 |
commit | ffd08df863b13ac8ca276e5d6f0a74ed28b55423 (patch) | |
tree | 05d80316cc8ee56fe5710fab53d60fd46d3c3b41 /RELEASE-NOTES | |
parent | 460459e8db2fd1ef4c60a9bd51c4a5083e5b8471 (diff) |
- curl_multi_timeout() could return a timeout value of 0 even though nothing
was actually ready to get done, as the internal time resolution is higher
than the returned millisecond timer. Therefore it could cause applications
running on fast processors to do short bursts of busy-loops.
curl_multi_timeout() will now only return 0 if the timeout is actually
alreay triggered.
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 0f33d2bb4..3ce349166 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -34,6 +34,8 @@ This release includes the following bugfixes: o improved connection re-use for subsequent SCP and SFTP transfers o multi interface does less busy-loops for SCP and SFTP transfers with libssh2 0.19 or later + o curl_multi_timeout() no longer returns timeout 0 when there's nothing to do + yet This release includes the following known bugs: |