aboutsummaryrefslogtreecommitdiff
path: root/lib/base
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-03-03 11:51:10 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-03-03 11:51:10 +0100
commit8aefeab76e692a2a0edf057ec6ad2b743375f4dd (patch)
tree11c04d5f95c241ef924c06b46026691ec0f38c79 /lib/base
parent6f2cf5c74f32e7aa8fea4ce93a6b0963f78fedd5 (diff)
parent4a5818c82c71caa97447d4f91bd418a68c0bf174 (diff)
downloadenigma2-8aefeab76e692a2a0edf057ec6ad2b743375f4dd.tar.gz
enigma2-8aefeab76e692a2a0edf057ec6ad2b743375f4dd.zip
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/base')
-rw-r--r--lib/base/filepush.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp
index 1999707f..ed2a2185 100644
--- a/lib/base/filepush.cpp
+++ b/lib/base/filepush.cpp
@@ -189,9 +189,13 @@ void eFilePushThread::thread()
if (m_send_pvr_commit && !already_empty)
{
eDebug("sending PVR commit");
+
+ struct pollfd pfd[1] = {m_fd_dest, POLLHUP};
+ poll(pfd, 1, 10000);
+ sleep(5); /* HACK to allow ES buffer to drain */
already_empty = 1;
- if (::ioctl(m_fd_dest, PVR_COMMIT) < 0 && errno == EINTR)
- continue;
+// if (::ioctl(m_fd_dest, PVR_COMMIT) < 0 && errno == EINTR)
+// continue;
eDebug("commit done");
/* well check again */
continue;