diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2021-05-17 09:49:32 +0200 |
---|---|---|
committer | Ansariel <ansariel.hiller@phoenixviewer.com> | 2021-05-17 09:49:32 +0200 |
commit | 89cf988aaf0de402641cd945e7e9ad5292bc78d6 (patch) | |
tree | 1166c1d56d8a39814261e1cdd812400d136e6cb1 /indra/llfilesystem/lldiskcache.cpp | |
parent | 0e253cb9098cb58b2f3528860a5fd9f00ec5af96 (diff) |
BUG-230673: Add warning that LLDiskCache::purge() is also called from outside the main thread
Diffstat (limited to 'indra/llfilesystem/lldiskcache.cpp')
-rw-r--r-- | indra/llfilesystem/lldiskcache.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llfilesystem/lldiskcache.cpp b/indra/llfilesystem/lldiskcache.cpp index 68423cc4f8..17906ce369 100644 --- a/indra/llfilesystem/lldiskcache.cpp +++ b/indra/llfilesystem/lldiskcache.cpp @@ -51,6 +51,8 @@ LLDiskCache::LLDiskCache(const std::string cache_dir, LLFile::mkdir(cache_dir); } +// WARNING: purge() is called by LLPurgeDiskCacheThread. As such it must +// NOT touch any LLDiskCache data without introducing and locking a mutex! void LLDiskCache::purge() { if (mEnableCacheDebugInfo) |