1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

AudioServer: Set the mixer thread name to "AudioServer[mixer]"

This commit is contained in:
Andrew Kaster 2019-12-07 12:50:02 -07:00 committed by Andreas Kling
parent 0b38a553b1
commit f67d007864

View file

@ -8,7 +8,7 @@ ASMixer::ASMixer()
, m_sound_thread([this] { , m_sound_thread([this] {
mix(); mix();
return 0; return 0;
}) }, "AudioServer[mixer]")
{ {
if (!m_device->open(CIODevice::WriteOnly)) { if (!m_device->open(CIODevice::WriteOnly)) {
dbgprintf("Can't open audio device: %s\n", m_device->error_string()); dbgprintf("Can't open audio device: %s\n", m_device->error_string());