diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-03-02 17:17:06 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-03-02 17:17:06 +0100 |
| commit | e63586af0f2e8acf5a0972ae1993c039edcd901e (patch) | |
| tree | 6e71d80bba8d845eb58517d98b60f43585092218 /lib/base | |
| parent | db3985b36a8e42c4c9d560bc4efaa4ef75d48c56 (diff) | |
| download | enigma2-e63586af0f2e8acf5a0972ae1993c039edcd901e.tar.gz enigma2-e63586af0f2e8acf5a0972ae1993c039edcd901e.zip | |
replace EOF magic by a slightly more accurate PVR EOF.
Diffstat (limited to 'lib/base')
| -rw-r--r-- | lib/base/filepush.cpp | 8 |
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; |
