aboutsummaryrefslogtreecommitdiff
path: root/lib/base
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-06-16 18:45:13 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-06-16 18:45:13 +0200
commit13705824885aa7f8fb779713eab7d0e5874769a4 (patch)
tree374e0b0c30d02b61fa3ba9fbca92ec336095dd80 /lib/base
parenta9f871b933a8771d6946395df1e1f0569b3cf582 (diff)
downloadenigma2-13705824885aa7f8fb779713eab7d0e5874769a4.tar.gz
enigma2-13705824885aa7f8fb779713eab7d0e5874769a4.zip
use POLLIN instead of POLLPRI for clip buffer empty
Diffstat (limited to 'lib/base')
-rw-r--r--lib/base/filepush.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp
index 605ec8a8..3412c84a 100644
--- a/lib/base/filepush.cpp
+++ b/lib/base/filepush.cpp
@@ -192,7 +192,7 @@ void eFilePushThread::thread()
struct pollfd pfd;
pfd.fd = m_fd_dest;
- pfd.events = POLLPRI;
+ pfd.events = POLLIN;
poll(&pfd, 1, 10000);
sleep(5); /* HACK to allow ES buffer to drain */
already_empty = 1;