diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-07-29 13:41:00 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-07-30 23:21:12 +0200 |
commit | 625f006cee8356eac743e5a577b3fd6e50390222 (patch) | |
tree | ed5a887df13ff55621794d35f3a274ad520dd7bf /tests/data/test1209 | |
parent | 62aa0ba91ab0ede286cb41eed0b215705a5b1c90 (diff) | |
download | curl-625f006cee8356eac743e5a577b3fd6e50390222.tar.gz |
curl_multi_poll: a sister to curl_multi_wait() that waits morebagder/curl_multi_poll
Repeatedly we see problems where using curl_multi_wait() is difficult or
just awkward because if it has no file descriptor to wait for
internally, it returns immediately and leaves it to the caller to wait
for a small amount of time in order to avoid occasional busy-looping.
This is often missed or misunderstood, leading to underperforming
applications.
This change introduces curl_multi_poll() as a replacement drop-in
function that accepts the exact same set of arguments. This function
works identically to curl_multi_wait() - EXCEPT - for the case when
there's nothing to wait for internally, as then this function will by
itself wait for a "suitable" short time before it returns. This
effectiely avoids all risks of busy-looping and should also make it less
likely that apps "over-wait".
This also changes the curl tool to use this funtion internally when
doing parallel transfers and changes curl_easy_perform() to use it
internally.
Diffstat (limited to 'tests/data/test1209')
0 files changed, 0 insertions, 0 deletions