mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-20 12:24:24 -04:00
add names to feedreader threads
This commit is contained in:
parent
f9d4a0cbfb
commit
24b3da06ef
1 changed files with 4 additions and 4 deletions
|
@ -65,12 +65,12 @@ p3FeedReader::p3FeedReader(RsPluginHandler* pgHandler, RsGxsForums *forums)
|
||||||
/* start download thread */
|
/* start download thread */
|
||||||
p3FeedReaderThread *frt = new p3FeedReaderThread(this, p3FeedReaderThread::DOWNLOAD, "");
|
p3FeedReaderThread *frt = new p3FeedReaderThread(this, p3FeedReaderThread::DOWNLOAD, "");
|
||||||
mThreads.push_back(frt);
|
mThreads.push_back(frt);
|
||||||
frt->start();
|
frt->start("fr download");
|
||||||
|
|
||||||
/* start process thread */
|
/* start process thread */
|
||||||
frt = new p3FeedReaderThread(this, p3FeedReaderThread::PROCESS, "");
|
frt = new p3FeedReaderThread(this, p3FeedReaderThread::PROCESS, "");
|
||||||
mThreads.push_back(frt);
|
mThreads.push_back(frt);
|
||||||
frt->start();
|
frt->start("fr process");
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
|
@ -698,11 +698,11 @@ bool p3FeedReader::addPreviewFeed(const FeedInfo &feedInfo, std::string &feedId)
|
||||||
|
|
||||||
/* start download thread for preview */
|
/* start download thread for preview */
|
||||||
mPreviewDownloadThread = new p3FeedReaderThread(this, p3FeedReaderThread::DOWNLOAD, feedId);
|
mPreviewDownloadThread = new p3FeedReaderThread(this, p3FeedReaderThread::DOWNLOAD, feedId);
|
||||||
mPreviewDownloadThread->start();
|
mPreviewDownloadThread->start("fr preview dl");
|
||||||
|
|
||||||
/* start process thread for preview */
|
/* start process thread for preview */
|
||||||
mPreviewProcessThread = new p3FeedReaderThread(this, p3FeedReaderThread::PROCESS, feedId);
|
mPreviewProcessThread = new p3FeedReaderThread(this, p3FeedReaderThread::PROCESS, feedId);
|
||||||
mPreviewProcessThread->start();
|
mPreviewProcessThread->start("fr preview proc");
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue