diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-12-11 09:01:02 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-12-11 09:01:02 +0530 |
commit | f70bfe80e25122d88acf42c88ffe4133a8b93081 (patch) | |
tree | 4b22172c4062cdb1952a62a254b9866fe70ff457 /manual/conf.texi | |
parent | 188f0adf708c67e5fb9796f2fcd0d818eefac882 (diff) | |
download | glibc-f70bfe80e25122d88acf42c88ffe4133a8b93081.zip glibc-f70bfe80e25122d88acf42c88ffe4133a8b93081.tar.gz glibc-f70bfe80e25122d88acf42c88ffe4133a8b93081.tar.bz2 |
Mention if terminating null is included in NAME_MAX/PATH_MAX
Fixes BZ #14872.
Diffstat (limited to 'manual/conf.texi')
-rw-r--r-- | manual/conf.texi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/manual/conf.texi b/manual/conf.texi index 61dc260..55ca4d1 100644 --- a/manual/conf.texi +++ b/manual/conf.texi @@ -1147,14 +1147,16 @@ typed ahead as input. @xref{I/O Queues}. @comment limits.h @comment POSIX.1 @deftypevr Macro int NAME_MAX -The uniform system limit (if any) for the length of a file name component. +The uniform system limit (if any) for the length of a file name component, not +including the terminating null character. @end deftypevr @comment limits.h @comment POSIX.1 @deftypevr Macro int PATH_MAX The uniform system limit (if any) for the length of an entire file name (that -is, the argument given to system calls such as @code{open}). +is, the argument given to system calls such as @code{open}), including the +terminating null character. @end deftypevr @cindex limits, pipe buffer size |