diff options
author | Oz Linden <oz@lindenlab.com> | 2011-10-11 13:55:20 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-10-11 13:55:20 -0400 |
commit | aabdbeadf53b3a20b4db563a23535af74fd7d4b7 (patch) | |
tree | c2cdcbf4758462b11f296c9ab200237aa33e5c71 /indra/llcommon/llworkerthread.cpp | |
parent | be251b06eb785a2d301115f9c231eb5f3c906224 (diff) | |
parent | 852349218e5cfdd48a1a64c672e9663aab716031 (diff) |
pull back beta fix for sh-2434
Diffstat (limited to 'indra/llcommon/llworkerthread.cpp')
-rw-r--r-- | indra/llcommon/llworkerthread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llworkerthread.cpp b/indra/llcommon/llworkerthread.cpp index 6b308bb917..e186621503 100644 --- a/indra/llcommon/llworkerthread.cpp +++ b/indra/llcommon/llworkerthread.cpp @@ -34,8 +34,8 @@ //============================================================================ // Run on MAIN thread -LLWorkerThread::LLWorkerThread(const std::string& name, bool threaded) : - LLQueuedThread(name, threaded) +LLWorkerThread::LLWorkerThread(const std::string& name, bool threaded, bool should_pause) : + LLQueuedThread(name, threaded, should_pause) { mDeleteMutex = new LLMutex; } |