introduce thread naming

This commit is contained in:
sehraf 2016-06-01 14:58:12 +02:00
parent cbef01451c
commit b3fece25da
4 changed files with 26 additions and 9 deletions

View file

@ -188,19 +188,18 @@ void ftServer::StartupThreads()
/* self contained threads */
/* startup ExtraList Thread */
mFtExtra->start();
mFtExtra->start("RS ft extra lst");
/* startup Monitor Thread */
/* startup the FileMonitor (after cache load) */
/* start it up */
mFiMon->start();
mFiMon->start("RS ft monitor");
/* Controller thread */
mFtController->start();
mFtController->start("RS ft ctrl");
/* Dataplex */
mFtDataplex->start();
mFtDataplex->start("RS ft dataplex");
}
void ftServer::StopThreads()