/* vi: set sw=4 ts=4: */ /* * sync_file_range() for uClibc * * Copyright (C) 2008 Bernhard Reutner-Fischer * * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball. */ #include #if defined __UCLIBC_HAS_LFS__ && defined __USE_GNU # include # include # include # include # ifdef __NR_sync_file_range2 # undef __NR_sync_file_range # define __NR_sync_file_range __NR_sync_file_range2 # endif # ifdef __NR_sync_file_range static int __NC(sync_file_range)(int fd, off64_t offset, off64_t nbytes, unsigned int flags) { # if defined __powerpc__ && __WORDSIZE == 64 return INLINE_SYSCALL(sync_file_range, 4, fd, offset, nbytes, flags); # elif defined __mips__ && _MIPS_SIM == _ABIO32 return INLINE_SYSCALL(sync_file_range, 7, fd, 0, OFF64_HI_LO(offset), OFF64_HI_LO(nbytes), flags); # else return INLINE_SYSCALL(sync_file_range, 6, fd, OFF64_HI_LO(offset), OFF64_HI_LO(nbytes), flags); # endif } CANCELLABLE_SYSCALL(int, sync_file_range, (int fd, off64_t offset, off64_t nbytes, unsigned int flags), (fd, offset, nbytes, flags)) # endif #endif