Skip to content
Snippets Groups Projects
Commit 58f9982f authored by David Parks's avatar David Parks
Browse files

SH-2738 Add comment documenting need to not make main thread wait on curl_multi_perform

parent c7f9c3af
No related branches found
No related tags found
No related merge requests found
...@@ -675,6 +675,10 @@ bool LLCurl::Multi::doPerform() ...@@ -675,6 +675,10 @@ bool LLCurl::Multi::doPerform()
call_count++) call_count++)
{ {
LLMutexLock lock(mMutexp) ; LLMutexLock lock(mMutexp) ;
//WARNING: curl_multi_perform will block for many hundreds of milliseconds
// NEVER call this from the main thread, and NEVER allow the main thread to
// wait on a mutex held by this thread while curl_multi_perform is executing
CURLMcode code = curl_multi_perform(mCurlMultiHandle, &q); CURLMcode code = curl_multi_perform(mCurlMultiHandle, &q);
if (CURLM_CALL_MULTI_PERFORM != code || q == 0) if (CURLM_CALL_MULTI_PERFORM != code || q == 0)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment