Name all threads (#886)
* Name all threads Close #874 * use ThreadName instead of ThreadId in Logging
This commit is contained in:
parent
f0055482fd
commit
5facc0c07f
13 changed files with 60 additions and 29 deletions
|
@ -70,7 +70,10 @@ namespace Ryujinx.Audio
|
|||
_context = new AudioContext();
|
||||
_tracks = new ConcurrentDictionary<int, OpenALAudioTrack>();
|
||||
_keepPolling = true;
|
||||
_audioPollerThread = new Thread(AudioPollerWork);
|
||||
_audioPollerThread = new Thread(AudioPollerWork)
|
||||
{
|
||||
Name = "Audio.PollerThread"
|
||||
};
|
||||
|
||||
_audioPollerThread.Start();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue