Mercurial > hg > octave-shane > gnulib-hg
annotate doc/posix-functions/access.texi @ 12073:17d15b9c2d1f
doc: mention more cygwin 1.7 status
* doc/posix-functions/access.texi (access): Mention cygwin 1.5
bug.
* doc/posix-functions/execl.texi (execl): Likewise.
* doc/posix-functions/execle.texi (execle): Likewise.
* doc/posix-functions/execlp.texi (execlp): Likewise.
* doc/posix-functions/execv.texi (execv): Likewise.
* doc/posix-functions/execve.texi (execve): Likewise.
* doc/posix-functions/execvp.texi (execvp): Likewise.
* doc/glibc-functions/canonicalize_file_name.texi
(canonicalize_file_name): Cygwin 1.7 now provides this.
* doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
* doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
on AT_SYMLINK_NOFOLLOW.
Signed-off-by: Eric Blake <ebb9@byu.net>
author | Eric Blake <ebb9@byu.net> |
---|---|
date | Sat, 26 Sep 2009 09:39:17 -0600 |
parents | c83dc7e8df57 |
children | dc644566d7ab |
rev | line source |
---|---|
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 @node access |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 @section @code{access} |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 @findex access |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 |
10876
c83dc7e8df57
Refer to new POSIX:2008 standard.
Bruno Haible <bruno@clisp.org>
parents:
9638
diff
changeset
|
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/access.html} |
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 Gnulib module: --- |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 Portability problems fixed by Gnulib: |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 @itemize |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 @end itemize |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 Portability problems not fixed by Gnulib: |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 @itemize |
12073
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
15 @item |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
16 This function uses the effective id instead of the real id on some |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
17 platforms: |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
18 Cygwin 1.5.x. |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
19 @item |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
20 There is an inherent race between calling this function and performing |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
21 some action based on the results; you should think twice before |
17d15b9c2d1f
doc: mention more cygwin 1.7 status
Eric Blake <ebb9@byu.net>
parents:
10876
diff
changeset
|
22 trusting this function in a set-uid or set-gid program. |
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 @end itemize |