add names to gxs threads

This commit is contained in:
sehraf 2016-06-01 16:47:21 +02:00
parent bc23c2f7b9
commit f9d4a0cbfb
3 changed files with 17 additions and 17 deletions

View file

@ -71,9 +71,9 @@ void RsServer::ConfigFinalSave()
mConfigMgr->completeConfiguration();
}
void RsServer::startServiceThread(RsTickingThread *t)
void RsServer::startServiceThread(RsTickingThread *t, const std::string &threadName)
{
t->start() ;
t->start(threadName) ;
mRegisteredServiceThreads.push_back(t) ;
}