summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/powerpc/posix_fadvise64.c
Commit message (Collapse)AuthorAgeFilesLines
* Build posix_fadvice{64} only when UCLIBC_HAS_ADVANCED_REALTIME is set.Khem Raj2009-08-301-3/+2
| | | | | | | | | Right now for ARM, MIPS, Xtensa and powerpc posix_fadvise routines are included conditionally. They should only be enabled when UCLIBC_HAS_ADVANCED_REALTIME is set. Also fix code style in powerpc/posix_fadvise64.c Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Add posix_fadvise{64}.c routines to Makefile.archKhem Raj2009-08-301-6/+6
| | | | | | | Fix the argument types to operate on long and correct a typo. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Add posix_fadvise and posix_fadvise64 for powerpcKhem Raj2009-08-301-0/+70
The syscall is having different number of params and in one case the parameters are passed in differently. This patch add powerpc specific versions of these functions. Signed-off-by: Khem Raj <raj.khem@gmail.com>