Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
58f9982f
Commit
58f9982f
authored
13 years ago
by
David Parks
Browse files
Options
Downloads
Patches
Plain Diff
SH-2738 Add comment documenting need to not make main thread wait on curl_multi_perform
parent
c7f9c3af
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llmessage/llcurl.cpp
+4
-0
4 additions, 0 deletions
indra/llmessage/llcurl.cpp
with
4 additions
and
0 deletions
indra/llmessage/llcurl.cpp
+
4
−
0
View file @
58f9982f
...
@@ -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
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment