diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-02-07 22:50:28 +0200 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-02-08 01:34:39 +0200 |
commit | 2e5b105dffc41695d0a64c5b55eef7c28da49246 (patch) | |
tree | 9768101df101c5031e1fc4c1b8c728ca46f1fa99 /indra/llcommon/threadpool.h | |
parent | 71d0e6f4004a1ba3f2f5e49b9b022903d032b1e3 (diff) |
SL-18721 Shutdown fixes #4
Diffstat (limited to 'indra/llcommon/threadpool.h')
-rw-r--r-- | indra/llcommon/threadpool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/threadpool.h b/indra/llcommon/threadpool.h index fa16c6fe71..b8be7bb81a 100644 --- a/indra/llcommon/threadpool.h +++ b/indra/llcommon/threadpool.h @@ -87,6 +87,7 @@ namespace LL protected: std::unique_ptr<WorkQueueBase> mQueue; + std::vector<std::pair<std::string, std::thread>> mThreads; bool mAutomaticShutdown; private: @@ -94,7 +95,6 @@ namespace LL std::string mName; size_t mThreadCount; - std::vector<std::pair<std::string, std::thread>> mThreads; }; /** |