mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-04-12 10:46:06 +00:00
Name our threads on Linux
This commit is contained in:
@@ -152,7 +152,7 @@ static void ClInternalConnectionTerminated(long errorCode)
|
||||
alreadyTerminated = 1;
|
||||
|
||||
// Invoke the termination callback on a separate thread
|
||||
err = PltCreateThread(terminationCallbackThreadFunc, NULL, &terminationCallbackThread);
|
||||
err = PltCreateThread("AsyncTerm", terminationCallbackThreadFunc, NULL, &terminationCallbackThread);
|
||||
if (err != 0) {
|
||||
// Nothing we can safely do here, so we'll just assert on debug builds
|
||||
Limelog("Failed to create termination thread: %d\n", err);
|
||||
|
||||
Reference in New Issue
Block a user