diff options
| author | Felix Domke <tmbinc@2mac.waldobjekt.org> | 2009-06-15 13:03:16 +0200 |
|---|---|---|
| committer | Felix Domke <tmbinc@2mac.waldobjekt.org> | 2009-06-15 13:03:16 +0200 |
| commit | 883a9c93798e01fc2825673799f48bf2a0a68d15 (patch) | |
| tree | 65a0ec082c7820c80936b1746a43d181161997a7 /lib/base | |
| parent | 17d12fc3339d68b023ab6f388a3576af2bcb4949 (diff) | |
| download | enigma2-883a9c93798e01fc2825673799f48bf2a0a68d15.tar.gz enigma2-883a9c93798e01fc2825673799f48bf2a0a68d15.zip | |
use POLLPRI instead of POLLHUP
Diffstat (limited to 'lib/base')
| -rw-r--r-- | lib/base/filepush.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index d43b6e1c..605ec8a8 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 = POLLHUP; + pfd.events = POLLPRI; poll(&pfd, 1, 10000); sleep(5); /* HACK to allow ES buffer to drain */ already_empty = 1; |
