summaryrefslogtreecommitdiff
path: root/syscall.c
AgeCommit message (Collapse)AuthorFilesLines
1998-05-26check for munmap as well as mmap. NextStep only has mmap in standardAndrew Tridgell1-1/+1
libs
1998-05-21use mmap() for files of any size. This should be much more bufferAndrew Tridgell1-0/+11
cache friendly.
1998-05-09first vesrion of working socket based rsync. It still needs a lot ofAndrew Tridgell1-0/+14
work, but at least it works :-)
1998-05-06damn solaris doesn't prototype it's functions correctly. grrr.Andrew Tridgell1-0/+1
1998-05-06better test for solaris broken readdirAndrew Tridgell1-13/+4
1998-05-06handle broken readdir() on Solaris 2.6 (it returns the name offset byAndrew Tridgell1-0/+18
2 characters!)
1998-05-06add support for lseek64() under solaris 2.6Andrew Tridgell1-0/+9
1998-05-06use floating point for printout of stats - this wrks on machinesAndrew Tridgell1-0/+2
without long long but with a 64 bit off_t
1998-05-06added support for 64 bit file offsets under Solaris 2.6. Not testedAndrew Tridgell1-0/+27
yet.
1998-04-05a couple more system calls wrapped in syscall.cAndrew Tridgell1-0/+18
1998-03-24check a few HAVE_* macrosAndrew Tridgell1-0/+6
1998-03-24added chmod() and chown() to syscall.cAndrew Tridgell1-0/+12
1998-03-23added wrappers around all the system calls that can change what is onAndrew Tridgell1-0/+61
disk. The wrappers check for dry_run.