diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-03-15 00:04:19 +0200 | 
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-03-15 19:44:38 +0200 | 
| commit | 1161262029f9619fb02d81575382b64d82d9cd09 (patch) | |
| tree | 4a2674c5ae409babf27439101d9bdb3cf6041c11 /indra/llcommon | |
| parent | 091ee67ec5b1c14cdee4601e9d258de7c52c9aa7 (diff) | |
SL-18721 Restore release behavior
Closing window correctly caused a significant amount of logout freezes
with no known reproes. Temporarily returning to old behavior were thread
was killes without closing window and will reenable in later maints to
hopefully get a scenario or at least more data of what is causing the
freeze.
Diffstat (limited to 'indra/llcommon')
| -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 b8be7bb81a..74056aea17 100644 --- a/indra/llcommon/threadpool.h +++ b/indra/llcommon/threadpool.h @@ -55,7 +55,7 @@ namespace LL           * ThreadPool listens for application shutdown messages on the "LLApp"           * LLEventPump. Call close() to shut down this ThreadPool early.           */ -        void close(); +        virtual void close();          std::string getName() const { return mName; }          size_t getWidth() const { return mThreads.size(); } | 
