mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
add names to feedreader threads
This commit is contained in:
parent
f9d4a0cbfb
commit
24b3da06ef
@ -65,12 +65,12 @@ p3FeedReader::p3FeedReader(RsPluginHandler* pgHandler, RsGxsForums *forums)
|
||||
/* start download thread */
|
||||
p3FeedReaderThread *frt = new p3FeedReaderThread(this, p3FeedReaderThread::DOWNLOAD, "");
|
||||
mThreads.push_back(frt);
|
||||
frt->start();
|
||||
frt->start("fr download");
|
||||
|
||||
/* start process thread */
|
||||
frt = new p3FeedReaderThread(this, p3FeedReaderThread::PROCESS, "");
|
||||
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 */
|
||||
mPreviewDownloadThread = new p3FeedReaderThread(this, p3FeedReaderThread::DOWNLOAD, feedId);
|
||||
mPreviewDownloadThread->start();
|
||||
mPreviewDownloadThread->start("fr preview dl");
|
||||
|
||||
/* start process thread for preview */
|
||||
mPreviewProcessThread = new p3FeedReaderThread(this, p3FeedReaderThread::PROCESS, feedId);
|
||||
mPreviewProcessThread->start();
|
||||
mPreviewProcessThread->start("fr preview proc");
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user