diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-05-16 06:38:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-05-16 06:38:36 +0000 |
commit | 9905e036de81b788ee4000d9314ba0b7ac3ff1f7 (patch) | |
tree | d28c05e83bf9bcc2f90fc1658a41e65f1be289a0 /manual/filesys.texi | |
parent | f7501ae6f14a1b27a4f98bdaf4f2aad929cf68b7 (diff) | |
download | glibc-9905e036de81b788ee4000d9314ba0b7ac3ff1f7.tar glibc-9905e036de81b788ee4000d9314ba0b7ac3ff1f7.tar.gz glibc-9905e036de81b788ee4000d9314ba0b7ac3ff1f7.tar.bz2 glibc-9905e036de81b788ee4000d9314ba0b7ac3ff1f7.zip |
(Symbolic Links): Adjust description of realpath to new implementation.
Diffstat (limited to 'manual/filesys.texi')
-rw-r--r-- | manual/filesys.texi | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi index f69dba3057..e715ec7ad1 100644 --- a/manual/filesys.texi +++ b/manual/filesys.texi @@ -1223,13 +1223,20 @@ where the result is placed in. @comment XPG @deftypefun {char *} realpath (const char *restrict @var{name}, char *restrict @var{resolved}) -The @code{realpath} function behaves just like -@code{canonicalize_file_name} but instead of allocating a buffer for the -result it is placed in the buffer pointed to by @var{resolved}. - -One other difference is that the buffer @var{resolved} will contain the -part of the path component which does not exist or is not readable if -the function returns @code{NULL} and @code{errno} is set to +A call to @code{realpath} where the @var{resolved} parameter is +@code{NULL} behaves exactly like @code{canonicalize_file_name}. The +function allocates a buffer for the file name and returns a pointer to +it. If @var{resolved} is not @code{NULL} it points to a buffer into +which the result is copied. It is the callers responsibility to +allocate a buffer which is large enough. On systems which define +@code{PATH_MAX} this means the buffer must be large enough for a +pathname of this size. For systems without limitations on the pathname +length the requirement cannot be met and programs should not call +@code{realpath} with anything but @code{NULL} for the second parameter. + +One other difference is that the buffer @var{resolved} (if nonzero) will +contain the part of the path component which does not exist or is not +readable if the function returns @code{NULL} and @code{errno} is set to @code{EACCES} or @code{ENOENT}. This function is declared in @file{stdlib.h}. |