update syscalls with off_t arguments to handle argument alignment, if needed
authorRich Felker <dalias@aerifal.cx>
Thu, 22 Sep 2011 00:11:10 +0000 (20:11 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 22 Sep 2011 00:11:10 +0000 (20:11 -0400)
commit0b6eb2dfb2e84a8a51906e7634f3d5edc230b058
tree9a1c1c54a2c1807c742c55c9d8deb1a839c3f9d8
parentd30c331d1f3262223a99408ff2d49641a46ce409
update syscalls with off_t arguments to handle argument alignment, if needed

the arm syscall abi requires 64-bit arguments to be aligned on an even
register boundary. these new macros facilitate meeting the abi
requirement without imposing significant ugliness on the code.
arch/arm/bits/syscall.h
arch/i386/bits/syscall.h
arch/x86_64/bits/syscall.h
src/fcntl/posix_fadvise.c
src/fcntl/posix_fallocate.c
src/unistd/ftruncate.c
src/unistd/pread.c
src/unistd/pwrite.c
src/unistd/truncate.c