123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #include <features.h>
- #include <unistd.h>
- #include <errno.h>
- #include <endian.h>
- #include <stdint.h>
- #include <sys/types.h>
- #include <sys/syscall.h>
- #include <fcntl.h>
- #ifdef __UCLIBC_HAS_LFS__
- #ifdef __NR_fadvise64_64
- #if __WORDSIZE == 64
- #define __NR_posix_fadvise64 __NR_fadvise64_64
- #if defined INTERNAL_SYSCALL && ! defined __TARGET_powerpc__
- int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
- {
- if (len != (off_t) len)
- return EOVERFLOW;
- INTERNAL_SYSCALL_DECL (err);
- int ret = INTERNAL_SYSCALL (posix_fadvise64, err, 5, fd,
- __LONG_LONG_PAIR ((long) (offset >> 32),
- (long) offset),
- (off_t) len, advice);
- if (!INTERNAL_SYSCALL_ERROR_P (ret, err))
- return 0;
- return INTERNAL_SYSCALL_ERRNO (ret, err);
- }
- #else
- static __inline__ int syscall_posix_fadvise(int fd, off_t offset1, off_t offset2, off_t len, int advice);
- #define __NR_syscall_posix_fadvise64 __NR_posix_fadvise64
- _syscall4(int, syscall_posix_fadvise64, int, fd, __off64_t, offset,
- __off64_t, len, int, advice)
- int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
- {
- int ret = syscall_posix_fadvise64(fd, offset, len, advice);
- if (ret == -1)
- return errno;
- return ret;
- }
- #endif
- #elif __WORDSIZE == 32
- #if defined INTERNAL_SYSCALL && ! defined __TARGET_powerpc__
- int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
- {
- INTERNAL_SYSCALL_DECL (err);
- int ret = INTERNAL_SYSCALL (fadvise64_64, err, 6, fd,
- __LONG_LONG_PAIR(offset >> 32, offset & 0xffffffff),
- __LONG_LONG_PAIR(len >> 32, len & 0xffffffff),
- advice);
- if (!INTERNAL_SYSCALL_ERROR_P (ret, err))
- return 0;
- return INTERNAL_SYSCALL_ERRNO (ret, err);
- }
- #elif defined _syscall6
- #define __NR___syscall_fadvise64_64 __NR_fadvise64_64
- static __inline__ _syscall6(int, __syscall_fadvise64_64, int, fd,
- unsigned long, high_offset, unsigned long, low_offset,
- unsigned long, high_len, unsigned long, low_len,
- int, advice)
- int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
- {
- int ret = __syscall_fadvise64_64(fd,
- __LONG_LONG_PAIR(offset >> 32, offset & 0xffffffff),
- __LONG_LONG_PAIR(len >> 32, len & 0xffffffff),
- advice);
- if (ret == -1)
- return errno;
- return ret;
- }
- #else
- #warning neither INTERNAL_SYSCALL nor _syscall6 has been defined for your machine :(
- #endif
- #else
- #error your machine is neither 32 bit or 64 bit ... it must be magical
- #endif
- #elif !defined __NR_fadvise64
- int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
- {
- #warning This is not correct as far as SUSv3 is concerned.
- return ENOSYS;
- }
- #endif
- #endif
|