diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-07-07 20:24:49 +0300 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-07-07 20:26:05 +0300 | 
| commit | 79198eddf76dfa69e8161f7646d8da19853a8a5a (patch) | |
| tree | eabf1a0836e7c4927598250c5e75317fd3be1258 /indra/llcommon | |
| parent | ed63ef3c0b6ceddf9ed667c1d69441d132b34983 (diff) | |
SL-19966 Reverted "SL-18721: Faster viewer shutdown time since performance improvements can lead to perceived inventory loss due to cache corruption"
This reverts commit cf692c40b0b9f8d0d04cd10a02a84e3f697a2e99.
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/threadpool.cpp | 5 | ||||
| -rw-r--r-- | indra/llcommon/threadpool.h | 4 | 
2 files changed, 0 insertions, 9 deletions
| diff --git a/indra/llcommon/threadpool.cpp b/indra/llcommon/threadpool.cpp index 4a7ead2110..d5adf11264 100644 --- a/indra/llcommon/threadpool.cpp +++ b/indra/llcommon/threadpool.cpp @@ -39,11 +39,6 @@ void LL::ThreadPool::start()                  run(tname);              });      } - -    // Special workflow for LLWindowWin32Thread - it's close() should be called explicitly -    if (mExplicitShutdown) -        return; -      // Listen on "LLApp", and when the app is shutting down, close the queue      // and join the workers.      LLEventPumps::instance().obtain("LLApp").listen( diff --git a/indra/llcommon/threadpool.h b/indra/llcommon/threadpool.h index 0a5f14529b..f8eec3b457 100644 --- a/indra/llcommon/threadpool.h +++ b/indra/llcommon/threadpool.h @@ -59,10 +59,6 @@ namespace LL           */          virtual void run(); -    protected: -        // LLWindowWin32Thread should set this flag to true -        bool mExplicitShutdown { false }; -      private:          void run(const std::string& name); | 
