From: Andreas Monzner Date: Fri, 17 Mar 2006 13:45:08 +0000 (+0000) Subject: fix error handling (errno checking) X-Git-Tag: 2.6.0~3802 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/a7cfb0cd7b847b559309202f7c06fe1f8f3117b5 fix error handling (errno checking) --- diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index 0f41b391..4bc52050 100644 --- a/lib/base/filepush.cpp +++ b/lib/base/filepush.cpp @@ -54,15 +54,14 @@ void eFilePushThread::thread() // eDebug("wrote %d bytes", w); if (w <= 0) { - if (errno == -EINTR) + if (errno == EINTR) continue; break; // ... we would stop the thread } - /* this should flush all written pages to disk. */ posix_fadvise(m_fd_dest, dest_pos, w, POSIX_FADV_DONTNEED); - + dest_pos += w; written_since_last_sync += w; @@ -119,7 +118,7 @@ void eFilePushThread::thread() { eDebug("sending PVR commit"); already_empty = 1; - if (::ioctl(m_fd_dest, PVR_COMMIT) == EINTR) + if (::ioctl(m_fd_dest, PVR_COMMIT) < 0 && errno == EINTR) continue; eDebug("commit done"); /* well check again */