diff options
| author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-11-09 13:16:04 -0800 |
|---|---|---|
| committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-11-09 13:16:04 -0800 |
| commit | dc5db676efd340bccd2c6f376c0bcba77e0507c4 (patch) | |
| tree | aba1c368d923d106789cddc59b5e4626f048dc44 /indra/llcommon/llqueuedthread.cpp | |
| parent | 2b5faa0b9cac3736b9d96a68cd13e05ee39ab7d1 (diff) | |
| parent | 3b98043d227db07a2396b1fba056e911abd04621 (diff) | |
merge
Diffstat (limited to 'indra/llcommon/llqueuedthread.cpp')
| -rw-r--r-- | indra/llcommon/llqueuedthread.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llcommon/llqueuedthread.cpp b/indra/llcommon/llqueuedthread.cpp index 395d298887..e7ad571a90 100644 --- a/indra/llcommon/llqueuedthread.cpp +++ b/indra/llcommon/llqueuedthread.cpp @@ -113,8 +113,11 @@ S32 LLQueuedThread::update(U32 max_time_ms) { if (!mStarted) { - startThread(); - mStarted = TRUE; + if (!mThreaded) + { + startThread(); + mStarted = TRUE; + } } return updateQueue(max_time_ms); } |
