diff options
author | Rical Jasan <ricaljasan@pacific.net> | 2017-05-15 23:41:25 -0700 |
---|---|---|
committer | Rical Jasan <ricaljasan@pacific.net> | 2017-05-18 00:44:06 -0700 |
commit | a449fc68f652ee3b4b048f30701cec19c91e96e8 (patch) | |
tree | fa4ae88a12f710d7c8418f611a33f92bb8a53f6d /manual/conf.texi | |
parent | f227c3e0a6a93e111a6217942d21ebab5898d59b (diff) | |
download | glibc-a449fc68f652ee3b4b048f30701cec19c91e96e8.zip glibc-a449fc68f652ee3b4b048f30701cec19c91e96e8.tar.gz glibc-a449fc68f652ee3b4b048f30701cec19c91e96e8.tar.bz2 |
manual: Convert @tables of annotated @items to @vtables.
The conversion script will convert these annotations, but the
replacement Summary-generation script won't catch them because @items
in @tables are not generally considered annotatable, causing them to
be skipped over (or cause errors). Using @vtable ensures their
continued presence in the Summary, with the added benefit that Texinfo
will also automatically include them in the Variable and Constant
Macro index now.
* manual/conf.texi: Convert @tables of annotated @items to
@vtables.
* manual/lang.texi: Likewise.
* manual/pattern.texi: Likewise.
* manual/resource.texi: Likewise.
* manual/socket.texi: Likewise.
Diffstat (limited to 'manual/conf.texi')
-rw-r--r-- | manual/conf.texi | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/manual/conf.texi b/manual/conf.texi index 1fe75c2..6700e86 100644 --- a/manual/conf.texi +++ b/manual/conf.texi @@ -1030,7 +1030,7 @@ limit parameters. The significance of these values is that you can safely push to these limits without checking whether the particular system you are using can go that far. -@table @code +@vtable @code @comment limits.h @comment POSIX.1 @item _POSIX_AIO_LISTIO_MAX @@ -1103,7 +1103,7 @@ for the maximum length of a time zone name. Its value is @code{3}. The value of this macro is the most restrictive limit permitted by POSIX for the numbers used in the @samp{\@{@var{min},@var{max}\@}} construct in a regular expression. Its value is @code{255}. -@end table +@end vtable @node Limits for Files @section Limits on File System Capacity @@ -1271,7 +1271,7 @@ system you are using can go that far. In most cases @gnusystems{} do not have these strict limitations. The actual limit should be requested if necessary. -@table @code +@vtable @code @comment limits.h @comment POSIX.1 @item _POSIX_LINK_MAX @@ -1340,7 +1340,7 @@ Minimum recommended file transfer size. @comment POSIX.1 @item POSIX_REC_XFER_ALIGN Recommended file transfer buffer alignment. -@end table +@end vtable @node Pathconf @section Using @code{pathconf} @@ -1409,7 +1409,7 @@ Here are the symbolic constants that you can use as the @var{parameter} argument to @code{pathconf} and @code{fpathconf}. The values are all integer constants. -@table @code +@vtable @code @comment unistd.h @comment POSIX.1 @item _PC_LINK_MAX @@ -1494,7 +1494,7 @@ Inquire about the value of @code{POSIX_REC_MIN_XFER_SIZE}. @comment POSIX.1 @item _PC_REC_XFER_ALIGN Inquire about the value of @code{POSIX_REC_XFER_ALIGN}. -@end table +@end vtable @strong{Portability Note:} On some systems, @theglibc{} does not enforce @code{_PC_NAME_MAX} or @code{_PC_PATH_MAX} limits. @@ -1573,7 +1573,7 @@ The maximum number of weights that can be assigned to an entry of the @node Utility Minimums @section Minimum Values for Utility Limits -@table @code +@vtable @code @comment limits.h @comment POSIX.2 @item _POSIX2_BC_BASE_MAX @@ -1627,7 +1627,7 @@ of weights that can be assigned to an entry of the @code{LC_COLLATE} category @samp{order} keyword in a locale definition. Its value is @code{2}. @Theglibc{} does not presently support locale definitions. -@end table +@end vtable @node String Parameters @section String-Valued Parameters @@ -1665,7 +1665,7 @@ The value of the @var{parameter} is invalid. Currently there is just one parameter you can read with @code{confstr}: -@table @code +@vtable @code @comment unistd.h @comment POSIX.2 @item _CS_PATH @@ -1728,7 +1728,7 @@ to the application if a source is compiled using the The returned string specifies which additional flags must be given to the lint tool if a source is compiled using the @code{_LARGEFILE64_SOURCE} feature select macro; @pxref{Feature Test Macros}. -@end table +@end vtable The way to use @code{confstr} without any arbitrary limit on string size is to call it twice: first call it to get the length, allocate the |