OSDN Git Service

rename: Use renameat if arch does not have the rename syscall
authorMarkos Chandras <markos.chandras@imgtec.com>
Wed, 10 Oct 2012 14:17:10 +0000 (15:17 +0100)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 20 Feb 2013 12:45:11 +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/stdio.h
libc/sysdeps/linux/common/rename.c
libc/sysdeps/linux/common/renameat.c

index 381ca5f..e0006d2 100644 (file)
@@ -151,6 +151,7 @@ __END_NAMESPACE_STD
 /* Rename file OLD relative to OLDFD to NEW relative to NEWFD.  */
 extern int renameat (int __oldfd, const char *__old, int __newfd,
                     const char *__new) __THROW;
+libc_hidden_proto(renameat)
 #endif
 
 __BEGIN_NAMESPACE_STD
index 6183cf4..3ce5a5e 100644 (file)
@@ -9,5 +9,14 @@
 
 #include <sys/syscall.h>
 #include <stdio.h>
+#include <unistd.h>
 
+#if defined __NR_renameat && !defined __NR_rename
+# include <fcntl.h>
+int rename(const char *oldpath, const char *newpath)
+{
+       return renameat(AT_FDCWD, oldpath, AT_FDCWD, newpath);
+}
+#else
 _syscall2(int, rename, const char *, oldpath, const char *, newpath)
+#endif
index a898f7b..b0b91fa 100644 (file)
@@ -11,6 +11,7 @@
 
 #ifdef __NR_renameat
 _syscall4(int, renameat, int, oldfd, const char *, old, int, newfd, const char *, new)
+libc_hidden_def(renameat)
 #else
 /* should add emulation with rename() and /proc/self/fd/ ... */
 #endif