about summary refs log tree commit diff
path: root/src/fcntl/posix_fadvise.c
Commit message (Collapse)AuthorAgeFilesLines
* in posix_fadvise, don't bypass __syscall macro infrastructureRich Felker2016-06-291-1/+1
| | | | | | | | when commit 0b6eb2dfb2e84a8a51906e7634f3d5edc230b058 added the parentheses around __syscall to invoke the function directly, there was no __syscall7 in the syscall macro infrastructure, so this hack was needed. commit 9a3bbce447403d735282586786dc436ec1ffbad4 fixed that but failed to remove the hack.
* add some missing LFS64 aliases for fadvise/fallocate functionsRich Felker2014-01-061-0/+3
|
* update syscalls with off_t arguments to handle argument alignment, if neededRich Felker2011-09-211-2/+2
| | | | | | 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.
* add syscall wrappers for posix_fadvise, posix_fallocateRich Felker2011-04-201-0/+8