QtNetwork: give started threads more verbose naming
i.e. make it obvious that they come from Qt. This helps when debugging and trying to differ user created threads from Qt threads. Change-Id: Idd6804246d6676b17cf15de6b644a5be629aa023 Reviewed-by: Rafael Roquetto <rafael.roquetto@kdab.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
574e5cf9c5
commit
73e93f4300
@ -610,14 +610,14 @@ void QNetworkReplyHttpImplPrivate::postRequest()
|
|||||||
if (synchronous) {
|
if (synchronous) {
|
||||||
// A synchronous HTTP request uses its own thread
|
// A synchronous HTTP request uses its own thread
|
||||||
thread = new QThread();
|
thread = new QThread();
|
||||||
thread->setObjectName(QStringLiteral("httpReply"));
|
thread->setObjectName(QStringLiteral("Qt HTTP synchronous thread"));
|
||||||
QObject::connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
|
QObject::connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
|
||||||
thread->start();
|
thread->start();
|
||||||
} else if (!managerPrivate->httpThread) {
|
} else if (!managerPrivate->httpThread) {
|
||||||
// We use the manager-global thread.
|
// We use the manager-global thread.
|
||||||
// At some point we could switch to having multiple threads if it makes sense.
|
// At some point we could switch to having multiple threads if it makes sense.
|
||||||
managerPrivate->httpThread = new QThread();
|
managerPrivate->httpThread = new QThread();
|
||||||
managerPrivate->httpThread->setObjectName(QStringLiteral("httpThread"));
|
managerPrivate->httpThread->setObjectName(QStringLiteral("Qt HTTP thread"));
|
||||||
managerPrivate->httpThread->start();
|
managerPrivate->httpThread->start();
|
||||||
|
|
||||||
thread = managerPrivate->httpThread;
|
thread = managerPrivate->httpThread;
|
||||||
|
@ -70,7 +70,7 @@ void QNetworkConfigurationManagerPrivate::initialize()
|
|||||||
{
|
{
|
||||||
//Two stage construction, because we only want to do this heavyweight work for the winner of the Q_GLOBAL_STATIC race.
|
//Two stage construction, because we only want to do this heavyweight work for the winner of the Q_GLOBAL_STATIC race.
|
||||||
bearerThread = new QThread();
|
bearerThread = new QThread();
|
||||||
bearerThread->setObjectName(QStringLiteral("bearerThread"));
|
bearerThread->setObjectName(QStringLiteral("Qt bearer thread"));
|
||||||
|
|
||||||
bearerThread->moveToThread(QCoreApplicationPrivate::mainThread()); // because cleanup() is called in main thread context.
|
bearerThread->moveToThread(QCoreApplicationPrivate::mainThread()); // because cleanup() is called in main thread context.
|
||||||
moveToThread(bearerThread);
|
moveToThread(bearerThread);
|
||||||
|
Loading…
Reference in New Issue
Block a user