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
2772a774
Commit
2772a774
authored
14 years ago
by
David Parks
Browse files
Options
Downloads
Patches
Plain Diff
Don't use llwarns/llinfos from a background thread.
parent
d682394d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llcommon/llthread.cpp
+2
-2
2 additions, 2 deletions
indra/llcommon/llthread.cpp
with
2 additions
and
2 deletions
indra/llcommon/llthread.cpp
+
2
−
2
View file @
2772a774
...
...
@@ -145,7 +145,7 @@ void LLThread::shutdown()
// First, set the flag that indicates that we're ready to die
setQuitting
();
llinfos
<<
"LLThread::~LLThread() Killing thread "
<<
mName
<<
" Status: "
<<
mStatus
<<
llendl
;
//
llinfos << "LLThread::~LLThread() Killing thread " << mName << " Status: " << mStatus << llendl;
// Now wait a bit for the thread to exit
// It's unclear whether I should even bother doing this - this destructor
// should netver get called unless we're already stopped, really...
...
...
@@ -167,7 +167,7 @@ void LLThread::shutdown()
if
(
!
isStopped
())
{
// This thread just wouldn't stop, even though we gave it time
llwarns
<<
"LLThread::~LLThread() exiting thread before clean exit!"
<<
llendl
;
//
llwarns << "LLThread::~LLThread() exiting thread before clean exit!" << llendl;
return
;
}
mAPRThreadp
=
NULL
;
...
...
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