mirror of
https://github.com/glest/glest-source.git
synced 2025-10-02 02:16:40 +02:00
display thread counts on app shutdown / ftp server startup and shutdown only in verbose mode
This commit is contained in:
@@ -155,13 +155,13 @@ static void cleanupProcessObjects() {
|
||||
SystemFlags::Close();
|
||||
SystemFlags::SHUTDOWN_PROGRAM_MODE=true;
|
||||
|
||||
printf("start running threads = %lu\n",Thread::getThreadList().size());
|
||||
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("start running threads = %lu\n",Thread::getThreadList().size());
|
||||
time_t elapsed = time(NULL);
|
||||
for(;Thread::getThreadList().size() > 0 &&
|
||||
difftime(time(NULL),elapsed) <= 10;) {
|
||||
//sleep(0);
|
||||
}
|
||||
printf("end running threads = %lu\n",Thread::getThreadList().size());
|
||||
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("end running threads = %lu\n",Thread::getThreadList().size());
|
||||
|
||||
std::map<int,Texture2D *> &crcPlayerTextureCache = CacheManager::getCachedItem< std::map<int,Texture2D *> >(GameConstants::playerTextureCacheLookupKey);
|
||||
//deleteMapValues(crcPlayerTextureCache.begin(),crcPlayerTextureCache.end());
|
||||
|
Reference in New Issue
Block a user