Browse Source

if arch doesnt provide _syscall6(), we need to alias the 64bit version

Mike Frysinger 20 năm trước cách đây
mục cha
commit
bfc0df1617
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      libc/sysdeps/linux/common/posix_fadvise.c

+ 1 - 1
libc/sysdeps/linux/common/posix_fadvise.c

@@ -20,7 +20,7 @@
 _syscall4(int, posix_fadvise, int, fd, off_t, offset,
           off_t, len, int, advice);
 
-#if defined __UCLIBC_HAS_LFS__ && !defined __NR_fadvise64_64
+#if defined __UCLIBC_HAS_LFS__ && (!defined __NR_fadvise64_64 || !defined _syscall6)
 weak_alias(posix_fadvise, posix_fadvise64)
 #endif