diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-01-15 22:27:28 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-01-15 22:27:28 +0200 |
commit | 8a92a771ba547d9d6a8bd1234e2e0b144a8bfcf5 (patch) | |
tree | 24787dcf00ea5155462358fd6c24ddccd174e8bb /indra/newview/llmainlooprepeater.cpp | |
parent | af0e498293c86dc7bb1ae7911bf932b7b287e115 (diff) |
SL-10291 Replace apr thread with standard C++11 functionality
Diffstat (limited to 'indra/newview/llmainlooprepeater.cpp')
-rw-r--r-- | indra/newview/llmainlooprepeater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmainlooprepeater.cpp b/indra/newview/llmainlooprepeater.cpp index db8d2e4ede..6736e9a950 100644 --- a/indra/newview/llmainlooprepeater.cpp +++ b/indra/newview/llmainlooprepeater.cpp @@ -46,7 +46,7 @@ void LLMainLoopRepeater::start(void) { if(mQueue != 0) return; - mQueue = new LLThreadSafeQueue<LLSD>(gAPRPoolp, 1024); + mQueue = new LLThreadSafeQueue<LLSD>(1024); mMainLoopConnection = LLEventPumps::instance(). obtain("mainloop").listen(LLEventPump::inventName(), boost::bind(&LLMainLoopRepeater::onMainLoop, this, _1)); mRepeaterConnection = LLEventPumps::instance(). |