From: ghost Date: Tue, 16 Jun 2009 16:45:13 +0000 (+0200) Subject: use POLLIN instead of POLLPRI for clip buffer empty X-Git-Tag: 2.6.0~237^2~2 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/13705824885aa7f8fb779713eab7d0e5874769a4?ds=inline use POLLIN instead of POLLPRI for clip buffer empty --- 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;