From a7cfb0cd7b847b559309202f7c06fe1f8f3117b5 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 17 Mar 2006 13:45:08 +0000 Subject: [PATCH 1/1] fix error handling (errno checking) --- lib/base/filepush.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 */ -- 2.30.2