From: ghost Date: Tue, 16 Jun 2009 16:45:13 +0000 (+0200) Subject: use POLLIN instead of POLLPRI for clip buffer empty X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=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 605ec8a..3412c84 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;