From 6c70a940b48c98d5be4bdc13a400a763e46eb5e6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 5 Jul 2009 18:30:04 -0400 Subject: drop missing {INLINE,INTERNAL}_SYSCALL fallback logic Ports missing INLINE_SYSCALL() support need to get fixed, so drop the cruft keeping them alive since it no longer works with the unification. Signed-off-by: Mike Frysinger --- libc/sysdeps/linux/common/posix_fadvise.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'libc/sysdeps/linux/common/posix_fadvise.c') diff --git a/libc/sysdeps/linux/common/posix_fadvise.c b/libc/sysdeps/linux/common/posix_fadvise.c index c00b79e6c..4fee8e49e 100644 --- a/libc/sysdeps/linux/common/posix_fadvise.c +++ b/libc/sysdeps/linux/common/posix_fadvise.c @@ -13,10 +13,6 @@ #ifdef __NR_fadvise64 #define __NR_posix_fadvise __NR_fadvise64 -/* get rid of following conditional when - all supported arches are having INTERNAL_SYSCALL defined -*/ -#ifdef INTERNAL_SYSCALL int posix_fadvise(int fd, off_t offset, off_t len, int advice) { INTERNAL_SYSCALL_DECL(err); @@ -26,21 +22,6 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice) return INTERNAL_SYSCALL_ERRNO (ret, err); return 0; } -#else -static __inline__ int syscall_posix_fadvise(int fd, off_t offset1, off_t offset2, off_t len, int advice); -#define __NR_syscall_posix_fadvise __NR_fadvise64 -_syscall5(int, syscall_posix_fadvise, int, fd, off_t, offset1, - off_t, offset2, off_t, len, int, advice) - -int posix_fadvise(int fd, off_t offset, off_t len, int advice) -{ - int ret = syscall_posix_fadvise(fd, __LONG_LONG_PAIR (offset >> 31, offset), len, advice); - if (ret == -1) - return errno; - return ret; -} - -#endif #if defined __UCLIBC_HAS_LFS__ && (!defined __NR_fadvise64_64 || !defined _syscall6) strong_alias(posix_fadvise,posix_fadvise64) -- cgit v1.2.3