avoid some overlong lines from posix urls, etc.
[gnulib.git] / doc / posix-functions / renameat.texi
1 @node renameat
2 @section @code{renameat}
3 @findex renameat
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/renameat.html}
6
7 Gnulib module: renameat
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function does not reject trailing slashes on non-directories on
13 some platforms, as in @code{renameat(fd,"file",fd,"new/")}:
14 Solaris 10.
15 @item
16 This function ignores trailing slashes on symlinks on some platforms,
17 such that @code{renameat(fd,"link/",fd,"new")} corrupts @file{link}:
18 Solaris 9.
19 @item
20 This function is missing on some platforms:
21 glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
22 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 8, Cygwin 1.5.x, mingw,
23 Interix 3.5, BeOS.
24 But the replacement function is not safe to be used in libraries and is not multithread-safe.
25 @end itemize
26
27 Portability problems not fixed by Gnulib:
28 @itemize
29 @item
30 POSIX requires that @code{renameat(fd,"symlink-to-dir/",fd,"dir2")} rename
31 @file{dir} and leave @file{symlink-to-dir} dangling; likewise, it
32 requires that @code{renameat(fd,"dir",fd,"dangling/")} rename @file{dir} so
33 that @file{dangling} is no longer a dangling symlink.  This behavior
34 is counter-intuitive, so on some systems, @code{renameat} fails with
35 @code{ENOTDIR} if either argument is a symlink with a trailing slash:
36 glibc, OpenBSD, Cygwin 1.7.
37 @item
38 This function will not rename a source that is currently opened
39 by any process:
40 mingw.
41 @end itemize