Mercurial > hg > octave-jordi > gnulib-hg
annotate doc/posix-functions/renameat.texi @ 18079:4c948fd76734 default tip master
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Mon, 24 Aug 2015 06:09:19 -0700 |
parents | 498a2211d839 |
children |
rev | line source |
---|---|
10880
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 @node renameat |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 @section @code{renameat} |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 @findex renameat |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 |
13549
bb0ceefd22dc
avoid some overlong lines from posix urls, etc.
Karl Berry <karl@freefriends.org>
parents:
12129
diff
changeset
|
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/renameat.html} |
10880
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 |
12099 | 7 Gnulib module: renameat |
10880
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 Portability problems fixed by Gnulib: |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 @itemize |
12099 | 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/")}: | |
16254
da62858ef2f6
doc: Update for Solaris 11 2011-11.
Bruno Haible <bruno@clisp.org>
parents:
15607
diff
changeset
|
14 Solaris 11 2011-11. |
12099 | 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 | |
13827
805b81dc0827
stdio: Work around compilation error due to renameat() on Solaris 10.
Bruno Haible <bruno@clisp.org>
parents:
13549
diff
changeset
|
20 This function is declared in @code{<unistd.h>} instead of @code{<stdio.h>} |
805b81dc0827
stdio: Work around compilation error due to renameat() on Solaris 10.
Bruno Haible <bruno@clisp.org>
parents:
13549
diff
changeset
|
21 on some platforms: |
16254
da62858ef2f6
doc: Update for Solaris 11 2011-11.
Bruno Haible <bruno@clisp.org>
parents:
15607
diff
changeset
|
22 Solaris 11 2011-11. |
13827
805b81dc0827
stdio: Work around compilation error due to renameat() on Solaris 10.
Bruno Haible <bruno@clisp.org>
parents:
13549
diff
changeset
|
23 @item |
12099 | 24 This function is missing on some platforms: |
16935
498a2211d839
Write "Mac OS X" instead of "MacOS X".
Bruno Haible <bruno@clisp.org>
parents:
16254
diff
changeset
|
25 glibc 2.3.6, Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, Minix 3.1.8, |
15607
6355dc4626b5
doc: Update regarding MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15481
diff
changeset
|
26 AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 8, Cygwin 1.5.x, mingw, MSVC 9, |
12099 | 27 Interix 3.5, BeOS. |
12129
8e8f0292e99f
doc: tweak *at function documentation
Eric Blake <ebb9@byu.net>
parents:
12099
diff
changeset
|
28 But the replacement function is not safe to be used in libraries and is not multithread-safe. |
10880
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
29 @end itemize |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
30 |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
31 Portability problems not fixed by Gnulib: |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
32 @itemize |
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
33 @item |
12099 | 34 POSIX requires that @code{renameat(fd,"symlink-to-dir/",fd,"dir2")} rename |
35 @file{dir} and leave @file{symlink-to-dir} dangling; likewise, it | |
36 requires that @code{renameat(fd,"dir",fd,"dangling/")} rename @file{dir} so | |
37 that @file{dangling} is no longer a dangling symlink. This behavior | |
38 is counter-intuitive, so on some systems, @code{renameat} fails with | |
39 @code{ENOTDIR} if either argument is a symlink with a trailing slash: | |
40 glibc, OpenBSD, Cygwin 1.7. | |
41 @item | |
13867
99f7d71ff81f
rename, renameat: Document Linux bug with NFS.
Bruno Haible <bruno@clisp.org>
parents:
13827
diff
changeset
|
42 After renaming a non-empty directory over an existing empty directory, |
99f7d71ff81f
rename, renameat: Document Linux bug with NFS.
Bruno Haible <bruno@clisp.org>
parents:
13827
diff
changeset
|
43 the old directory name is still visible through the @code{stat} function |
99f7d71ff81f
rename, renameat: Document Linux bug with NFS.
Bruno Haible <bruno@clisp.org>
parents:
13827
diff
changeset
|
44 for 30 seconds after the rename, on NFS file systems, on some platforms: |
99f7d71ff81f
rename, renameat: Document Linux bug with NFS.
Bruno Haible <bruno@clisp.org>
parents:
13827
diff
changeset
|
45 Linux 2.6.18. |
99f7d71ff81f
rename, renameat: Document Linux bug with NFS.
Bruno Haible <bruno@clisp.org>
parents:
13827
diff
changeset
|
46 @item |
12099 | 47 This function will not rename a source that is currently opened |
48 by any process: | |
15607
6355dc4626b5
doc: Update regarding MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15481
diff
changeset
|
49 mingw, MSVC 9. |
10880
b1d6a7b9222f
Document functions that have been added to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
50 @end itemize |