add static thread names

This commit is contained in:
sehraf 2016-06-01 16:18:19 +02:00
parent 5b67654530
commit f16ee97093
7 changed files with 10 additions and 10 deletions

View file

@ -592,7 +592,7 @@ bool ftTransferModule::checkFile()
// Note: using new is really important to avoid copy and write errors in the thread.
//
_hash_thread = new HashThread(mFileCreator) ;
_hash_thread->start() ;
_hash_thread->start("ft hash") ;
#ifdef FT_DEBUG
std::cerr << "ftTransferModule::checkFile(): launched hashing thread for file " << mHash << std::endl ;
#endif