diff options
author | Max Kellermann <max@duempel.org> | 2013-12-13 14:35:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-13 14:35:36 +0100 |
commit | 8e38b4f83c98ae61e9f843c3d770dcbac699c98c (patch) | |
tree | 6f168278f649df32fc03430ddf1a1fede367f0a0 /src | |
parent | db4ae19246a32df27cfe4d487f9e1aaec8673440 (diff) | |
download | mpd-8e38b4f83c98ae61e9f843c3d770dcbac699c98c.tar.gz mpd-8e38b4f83c98ae61e9f843c3d770dcbac699c98c.tar.xz mpd-8e38b4f83c98ae61e9f843c3d770dcbac699c98c.zip |
mixer/alsa: use BlockingCall() instead of EventLoop::AddCall()
This is safer, and works without epoll(). Fixes a build failure with
uClibc, which does not support epoll().
Diffstat (limited to '')
-rw-r--r-- | src/mixer/AlsaMixerPlugin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mixer/AlsaMixerPlugin.cxx b/src/mixer/AlsaMixerPlugin.cxx index 7defdd7be..b81ca4246 100644 --- a/src/mixer/AlsaMixerPlugin.cxx +++ b/src/mixer/AlsaMixerPlugin.cxx @@ -24,6 +24,7 @@ #include "Main.hxx" #include "event/MultiSocketMonitor.hxx" #include "event/Loop.hxx" +#include "event/Call.hxx" #include "util/ASCII.hxx" #include "util/ReusableArray.hxx" #include "util/Error.hxx" @@ -46,7 +47,7 @@ class AlsaMixerMonitor final : private MultiSocketMonitor { public: AlsaMixerMonitor(EventLoop &_loop, snd_mixer_t *_mixer) :MultiSocketMonitor(_loop), mixer(_mixer) { - _loop.AddCall([this](){ InvalidateSockets(); }); + BlockingCall(_loop, [this](){ InvalidateSockets(); }); } private: |