modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / lib / gnulib / doc / posix-functions / readlinkat.texi
blob51fbeba7a77f7a8137eca6990772a8c9d33da1cd
1 @node readlinkat
2 @section @code{readlinkat}
3 @findex readlinkat
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readlinkat.html}
7 Gnulib module: readlinkat
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 glibc 2.3.6, Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, Minix 3.1.8,
14 AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, MSVC 9, Interix 3.5, BeOS.
15 But the replacement function is not safe to be used in libraries and is not multithread-safe.
16 @item
17 On some platforms, @code{readlinkat} returns @code{int} instead of
18 @code{ssize_t}:
19 AIX 7.1.
20 @item
21 @end itemize
23 Portability problems not fixed by Gnulib:
24 @itemize
25 @item
26 This function always fails on platforms that don't support symlinks:
27 mingw, MSVC 9.
28 @item
29 When @code{readlink} is called on a directory: In the case of NFS mounted
30 directories, Cygwin sets @code{errno} to @code{ENOENT} or @code{EIO} instead of
31 @code{EINVAL}.  To avoid this problem, check for a directory before calling
32 @code{readlink}.
33 @item
34 When @code{readlink} is called on a file that is not a symbolic link:
35 Irix may set @code{errno} to @code{ENXIO} instead of @code{EINVAL}.  Cygwin
36 may set errno to @code{EACCES} instead of @code{EINVAL}.
37 @item
38 Symlink contents do not always have a trailing null byte, and there is
39 no indication if symlink contents were truncated if the return value
40 matches the length.  Furthermore, AIX 5.1 and HP-UX 11 set
41 @code{errno} to @code{ERANGE} rather than returning truncated
42 contents, and Linux sets @code{errno} to @code{EINVAL} if the
43 requested length is zero.  Use the gnulib module areadlink for
44 improved ability to read symlink contents.
45 @end itemize