From d1b1bb8c317630566c3996de8a1dc18d5b43b908 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 7 Jul 2011 15:44:44 +0000 Subject: fix sendfile on darwin differently --- eio.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eio.c b/eio.c index 249ecea..2a42802 100644 --- a/eio.c +++ b/eio.c @@ -987,6 +987,9 @@ eio__sendfile (int ofd, int ifd, off_t offset, size_t count, etp_worker *self) for (;;) { +#ifdef __APPLE__ +# undef HAVE_SENDFILE /* broken, as everything on os x */ +#endif #if HAVE_SENDFILE # if __linux off_t soffset = offset; @@ -1012,7 +1015,7 @@ eio__sendfile (int ofd, int ifd, off_t offset, size_t count, etp_worker *self) if (sbytes) res = sbytes; -# elif defined (__APPLE__) && 0 /* broken, as everything on os x */ +# elif defined (__APPLE__) off_t sbytes = count; res = sendfile (ifd, ofd, offset, &sbytes, 0, 0); -- cgit v1.2.3