- bugfix for background crc thread shutdown

- more performance monitoring and better output of only warnings
This commit is contained in:
Mark Vejvoda
2013-11-11 04:46:49 +00:00
parent 8a7f686e33
commit f1abe148ea
4 changed files with 69 additions and 76 deletions

View File

@@ -293,6 +293,9 @@ void FileCRCPreCacheThread::execute() {
getQuitStatus() == false;) {
sleep(25);
}
if(getQuitStatus() == true) {
break;
}
}
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\t\tStart Processing CRC for techName [%s]\n",techName.c_str());
@@ -326,6 +329,9 @@ void FileCRCPreCacheThread::execute() {
getQuitStatus() == false;) {
sleep(25);
}
if(getQuitStatus() == true) {
break;
}
}
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("\t\t\tStart Processing CRC for factionName [%s]\n",factionName.c_str());