diff options
| author | Ac_K <Acoustik666@gmail.com> | 2020-01-13 01:21:54 +0100 |
|---|---|---|
| committer | Thog <me@thog.eu> | 2020-01-13 01:21:54 +0100 |
| commit | 5facc0c07f8a3f6fd0f39229044fe120501162a7 (patch) | |
| tree | 58ea7980cd38214806152b5f13f2427102a78564 /Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs | |
| parent | f0055482fd1aef9dcae7c6c4c6e01483f11f7839 (diff) | |
Name all threads (#886)
* Name all threads
Close #874
* use ThreadName instead of ThreadId in Logging
Diffstat (limited to 'Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs')
| -rw-r--r-- | Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs b/Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs index 69f36a4d..30b325a5 100644 --- a/Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs +++ b/Ryujinx.Audio/Renderers/OpenAL/OpenALAudioOut.cs @@ -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(); } |
