summaryrefslogtreecommitdiffstats
path: root/source/lib/sendfile.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix Solaris sendfile detection. Add small fixes to sendfile code.Jeremy Allison2002-10-011-3/+2
| | | | Jeremy.
* Added Solaris sendfile patch + configure tests from Pierre Belanger ↵Jeremy Allison2002-09-301-3/+84
| | | | | | <belanger@yahoo.com>. Jeremy.
* Don't zero out numwritten before using.... Found by Pierre Belanger ↵Jeremy Allison2002-09-301-2/+2
| | | | | | belanger@pobox.com Jeremy.
* Merge back Richard's FreeBSD sendfile fixes.Jeremy Allison2002-09-211-5/+5
| | | | Jeremy.
* HPUX sendfile is now detected correctly.Jeremy Allison2002-09-181-1/+2
| | | | Jeremy.
* Actually use sendfile if selected.Jeremy Allison2002-09-171-2/+2
| | | | Jeremy.
* Attempt to make broken Linux sendfile work.... Still in progress.Jeremy Allison2002-09-171-7/+17
| | | | Jeremy.
* Use HAVE_SENDFILE64, not SENDFILE64.Jeremy Allison2002-09-141-2/+5
| | | | Jeremy.
* Added fix for broken Linux (no sendfile64). When offset + count > 2GBJeremy Allison2002-09-141-0/+57
| | | | | then return ENOSYS and let the upper layer handle it. Jeremy
* Fixed up FreeBSD sendfile code - only Solaris left then I can add theJeremy Allison2002-09-121-22/+55
| | | | | configure tests... Jeremy.
* HPUX takes offset, not pointer to offset.Jeremy Allison2002-09-121-2/+2
| | | | Jeremy.
* Fixup sendfile to match HPUX semantics with signal interrups. This wasJeremy Allison2002-09-121-12/+52
| | | | | fiddly.... :-(. Jeremy.
* First cut at portable sendfile code. Only used in readX at the momentJeremy Allison2002-09-121-0/+158
and doesn't actually call sendfile. Needs to be vectored through the VFS and tested on all supported platforms (Solaris/HPUX/FreeBSD/Linux). Linux doesn't actually work (2.4.19 kernel) at the moment because it doesn't have a 64-bit clean sendfile. Jeremy.