about summary refs log tree commit diff
path: root/src/fcntl/posix_fallocate.c
Commit message (Collapse)AuthorAgeFilesLines
* remove spurious inclusion of libc.h for LFS64 ABI aliasesRich Felker2018-09-121-2/+1
| | | | | | the LFS64 macro was not self-documenting and barely saved any characters. simply use weak_alias directly so that it's clear what's being done, and doesn't depend on a header to provide a strange macro.
* add some missing LFS64 aliases for fadvise/fallocate functionsRich Felker2014-01-061-0/+3
|
* fix broken fallocate syscall in posix_fallocateRich Felker2012-09-081-1/+1
| | | | | the syscall takes an extra flag argument which should be zero to meet the POSIX requirements.
* 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