summaryrefslogtreecommitdiff
path: root/indra/llfilesystem/lldiskcache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llfilesystem/lldiskcache.cpp')
-rw-r--r--indra/llfilesystem/lldiskcache.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/indra/llfilesystem/lldiskcache.cpp b/indra/llfilesystem/lldiskcache.cpp
index 02678864b9..68423cc4f8 100644
--- a/indra/llfilesystem/lldiskcache.cpp
+++ b/indra/llfilesystem/lldiskcache.cpp
@@ -335,3 +335,25 @@ uintmax_t LLDiskCache::dirFileSize(const std::string dir)
return total_file_size;
}
+
+LLPurgeDiskCacheThread::LLPurgeDiskCacheThread() :
+ LLThread("PurgeDiskCacheThread", nullptr)
+{
+}
+
+void LLPurgeDiskCacheThread::run()
+{
+ constexpr F64 CHECK_INTERVAL = 60;
+ mTimer.setTimerExpirySec(CHECK_INTERVAL);
+ mTimer.start();
+
+ do
+ {
+ if (mTimer.checkExpirationAndReset(CHECK_INTERVAL))
+ {
+ LLDiskCache::instance().purge();
+ }
+
+ ms_sleep(100);
+ } while (!isQuitting());
+} \ No newline at end of file