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:
parent
0b38a553b1
commit
f67d007864
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue