OSDN Git Service

ftruncate: Use ftruncate64 if arch does not have the ftruncate syscall
authorMarkos Chandras <markos.chandras@imgtec.com>
Thu, 11 Oct 2012 10:08:28 +0000 (11:08 +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>
libc/sysdeps/linux/common/ftruncate.c

index ea4dfc0..96076e4 100644 (file)
 #include <sys/syscall.h>
 #include <unistd.h>
 
+#if defined __NR_ftruncate64 && !defined __NR_ftruncate
+# include <endian.h>
+# include <stdint.h>
+int ftruncate(int fd, __off_t length)
+{
+# if defined __UCLIBC_HAS_LFS__
+       return ftruncate64(fd, length);
+# elif __WORDSIZE == 32
+       return INLINE_SYSCALL(ftruncate64, 3, fd, OFF_HI_LO(length));
+# endif
+}
+libc_hidden_def(ftruncate);
+
+#else
 _syscall2(int, ftruncate, int, fd, __off_t, length)
 libc_hidden_def(ftruncate)
+#endif