Mercurial > hg > orthanc
diff OrthancServer/Sources/ServerContext.h @ 5183:5ec3dcdf78b9
renamed HousekeeperThread as MemoryTrimmingThread to avoid confusion with Housekeeper plugin
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 25 Mar 2023 12:07:39 +0100 |
parents | cddf28cfcd8d |
children | 0ea402b4d901 |
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerContext.h Sat Mar 25 11:38:37 2023 +0100 +++ b/OrthancServer/Sources/ServerContext.h Sat Mar 25 12:07:39 2023 +0100 @@ -188,8 +188,8 @@ unsigned int sleepDelay); #if HAVE_MALLOC_TRIM == 1 - static void HousekeeperThread(ServerContext* that, - unsigned int sleepDelay); + static void MemoryTrimmingThread(ServerContext* that, + unsigned int sleepDelay); #endif void SaveJobsEngine(); @@ -235,7 +235,7 @@ SharedMessageQueue pendingChanges_; boost::thread changeThread_; boost::thread saveJobsThread_; - boost::thread housekeeperThread_; + boost::thread memoryTrimmingThread_; std::unique_ptr<SharedArchive> queryRetrieveArchive_; std::string defaultLocalAet_;