OSDN Git Service

truncate: Use truncate64 if arch does not have the truncate syscall
authorMarkos Chandras <markos.chandras@imgtec.com>
Thu, 11 Oct 2012 10:10:50 +0000 (11:10 +0100)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 20 Feb 2013 12:45:12 +0000 (13:45 +0100)
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
include/unistd.h
libc/sysdeps/linux/common/truncate.c
libc/sysdeps/linux/common/truncate64.c

index 8f2a09a..540062a 100644 (file)
@@ -1110,6 +1110,7 @@ extern int __REDIRECT_NTH (truncate,
 # ifdef __USE_LARGEFILE64
 extern int truncate64 (const char *__file, __off64_t __length)
      __THROW __nonnull ((1)) __wur;
+libc_hidden_proto(truncate64)
 # endif
 
 #endif /* Use BSD || X/Open Unix.  */
index fe7bda9..0c533df 100644 (file)
 #include <sys/syscall.h>
 #include <unistd.h>
 
+#if defined(__NR_truncate64) && !defined(__NR_truncate)
+# include <endian.h>
+# include <stdint.h>
+
+int truncate(const char *path, __off_t length)
+{
+# if defined __UCLIBC_HAS_LFS
+       return truncate64(path, length);
+# elif __WORDSIZE == 32
+#  if defined(__UCLIBC_TRUNCATE64_HAS_4_ARGS__)
+       return INLINE_SYSCALL(truncate64, 4, path, 0, OFF_HI_LO(length));
+#  else
+       return INLINE_SYSCALL(truncate64, 3, path, OFF_HI_LO(length));
+#  endif
+# endif
+}
+libc_hidden_def(truncate);
+
+#else
 _syscall2(int, truncate, const char *, path, __off_t, length)
 libc_hidden_def(truncate)
+#endif
index 6dfdc4c..1f5f862 100644 (file)
@@ -52,4 +52,6 @@ int truncate64(const char * path, __off64_t length)
 
        return -1;
 }
-#endif
+
+#endif /* __NR_truncate64 */
+libc_hidden_def(truncate64)