From 14cca1c6d7799f75c5e6cdc06af102cec9b67a30 Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Mon, 6 Aug 2012 17:32:54 -0400 Subject: [PATCH] * #11278: alsa: increase sleep between calls to open --- daemon/src/audio/alsa/alsalayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/src/audio/alsa/alsalayer.cpp b/daemon/src/audio/alsa/alsalayer.cpp index 94237b5eff..ee64879908 100644 --- a/daemon/src/audio/alsa/alsalayer.cpp +++ b/daemon/src/audio/alsa/alsalayer.cpp @@ -160,7 +160,7 @@ bool AlsaLayer::openDevice(snd_pcm_t **pcm, const std::string &dev, snd_pcm_stre // Retry if busy, since dmix plugin may not have released the device yet for (int tries = 0; tries < MAX_RETRIES and err == -EBUSY; ++tries) { - const struct timespec req = {0, 10000000}; + const struct timespec req = {0, 100000000L}; nanosleep(&req, 0); err = snd_pcm_open(pcm, dev.c_str(), stream, 0); } -- GitLab