Commit 5c48d3fb authored by Max Kellermann's avatar Max Kellermann

alsa/mixer: defer InvalidateSockets() call to I/O thread

parent 00420ef9
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include "GlobalEvents.hxx" #include "GlobalEvents.hxx"
#include "Main.hxx" #include "Main.hxx"
#include "event/MultiSocketMonitor.hxx" #include "event/MultiSocketMonitor.hxx"
#include "event/Loop.hxx"
#include "util/ReusableArray.hxx" #include "util/ReusableArray.hxx"
#include <algorithm> #include <algorithm>
...@@ -42,7 +43,7 @@ class AlsaMixerMonitor final : private MultiSocketMonitor { ...@@ -42,7 +43,7 @@ class AlsaMixerMonitor final : private MultiSocketMonitor {
public: public:
AlsaMixerMonitor(EventLoop &_loop, snd_mixer_t *_mixer) AlsaMixerMonitor(EventLoop &_loop, snd_mixer_t *_mixer)
:MultiSocketMonitor(_loop), mixer(_mixer) { :MultiSocketMonitor(_loop), mixer(_mixer) {
InvalidateSockets(); _loop.AddCall([this](){ InvalidateSockets(); });
} }
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment