mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 14:11:33 +00:00
Add names to session threads
This commit is contained in:
@@ -989,7 +989,10 @@ class AsyncConnectionStartThread : public QThread
|
|||||||
public:
|
public:
|
||||||
AsyncConnectionStartThread(Session* session) :
|
AsyncConnectionStartThread(Session* session) :
|
||||||
QThread(nullptr),
|
QThread(nullptr),
|
||||||
m_Session(session) {}
|
m_Session(session)
|
||||||
|
{
|
||||||
|
setObjectName("Async Conn Start");
|
||||||
|
}
|
||||||
|
|
||||||
void run() override
|
void run() override
|
||||||
{
|
{
|
||||||
@@ -1131,7 +1134,10 @@ class ExecThread : public QThread
|
|||||||
public:
|
public:
|
||||||
ExecThread(Session* session) :
|
ExecThread(Session* session) :
|
||||||
QThread(nullptr),
|
QThread(nullptr),
|
||||||
m_Session(session) {}
|
m_Session(session)
|
||||||
|
{
|
||||||
|
setObjectName("Session Exec");
|
||||||
|
}
|
||||||
|
|
||||||
void run() override
|
void run() override
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user