From 13705824885aa7f8fb779713eab7d0e5874769a4 Mon Sep 17 00:00:00 2001 From: ghost Date: Tue, 16 Jun 2009 18:45:13 +0200 Subject: [PATCH] use POLLIN instead of POLLPRI for clip buffer empty --- lib/base/filepush.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2