1997-06-05 13:28:54 +02:00
|
|
|
@node Argp, Suboptions, Getopt, Parsing Program Arguments
|
|
|
|
@need 5000
|
|
|
|
@section Parsing Program Options with Argp
|
|
|
|
@cindex argp (program argument parser)
|
|
|
|
@cindex argument parsing with argp
|
|
|
|
@cindex option parsing with argp
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
@dfn{Argp} is an interface for parsing unix-style argument vectors.
|
|
|
|
@xref{Program Arguments}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
Argp provides features unavailable in the more commonly used
|
|
|
|
@code{getopt} interface. These features include automatically producing
|
|
|
|
output in response to the @samp{--help} and @samp{--version} options, as
|
|
|
|
described in the GNU coding standards. Using argp makes it less likely
|
|
|
|
that programmers will neglect to implement these additional options or
|
|
|
|
keep them up to date.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
Argp also provides the ability to merge several independently defined
|
2001-06-29 03:19:02 +02:00
|
|
|
option parsers into one, mediating conflicts between them and making the
|
|
|
|
result appear seamless. A library can export an argp option parser that
|
|
|
|
user programs might employ in conjunction with their own option parsers,
|
|
|
|
resulting in less work for the user programs. Some programs may use only
|
|
|
|
argument parsers exported by libraries, thereby achieving consistent and
|
|
|
|
efficient option-parsing for abstractions implemented by the libraries.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@pindex argp.h
|
|
|
|
The header file @file{<argp.h>} should be included to use argp.
|
|
|
|
|
|
|
|
@subsection The @code{argp_parse} Function
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
The main interface to argp is the @code{argp_parse} function. In many
|
|
|
|
cases, calling @code{argp_parse} is the only argument-parsing code
|
|
|
|
needed in @code{main}.
|
|
|
|
@xref{Program Arguments}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
1998-06-11 16:56:10 +02:00
|
|
|
@deftypefun {error_t} argp_parse (const struct argp *@var{argp}, int @var{argc}, char **@var{argv}, unsigned @var{flags}, int *@var{arg_index}, void *@var{input})
|
1998-06-15 20:12:05 +02:00
|
|
|
The @code{argp_parse} function parses the arguments in @var{argv}, of
|
2001-06-29 03:19:02 +02:00
|
|
|
length @var{argc}, using the argp parser @var{argp}. @xref{Argp
|
|
|
|
Parsers}.
|
|
|
|
|
|
|
|
A value of zero is the same as a @code{struct argp}containing all
|
|
|
|
zeros. @var{flags} is a set of flag bits that modify the parsing
|
|
|
|
behavior. @xref{Argp Flags}. @var{input} is passed through to the argp
|
|
|
|
parser @var{argp}, and has meaning defined by @var{argp}. A typical
|
|
|
|
usage is to pass a pointer to a structure which is used for specifying
|
|
|
|
parameters to the parser and passing back the results.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
Unless the @code{ARGP_NO_EXIT} or @code{ARGP_NO_HELP} flags are included
|
|
|
|
in @var{flags}, calling @code{argp_parse} may result in the program
|
2001-06-29 03:19:02 +02:00
|
|
|
exiting. This behavior is true if an error is detected, or when an
|
|
|
|
unknown option is encountered. @xref{Program Termination}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
2000-04-18 08:24:03 +02:00
|
|
|
If @var{arg_index} is non-null, the index of the first unparsed option
|
2001-06-29 03:19:02 +02:00
|
|
|
in @var{argv} is returned as a value.
|
2000-04-15 21:38:00 +02:00
|
|
|
|
2000-04-18 08:24:03 +02:00
|
|
|
The return value is zero for successful parsing, or an error code
|
2001-06-29 03:19:02 +02:00
|
|
|
(@pxref{Error Codes}) if an error is detected. Different argp parsers
|
|
|
|
may return arbitrary error codes, but the standard error codes are:
|
|
|
|
@code{ENOMEM} if a memory allocation error occurred, or @code{EINVAL} if
|
|
|
|
an unknown option or option argument is encountered.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Globals: Argp Global Variables. Global argp parameters.
|
|
|
|
* Parsers: Argp Parsers. Defining parsers for use with @code{argp_parse}.
|
|
|
|
* Flags: Argp Flags. Flags that modify the behavior of @code{argp_parse}.
|
|
|
|
* Help: Argp Help. Printing help messages when not parsing.
|
|
|
|
* Examples: Argp Examples. Simple examples of programs using argp.
|
|
|
|
* Customization: Argp User Customization.
|
|
|
|
Users may control the @samp{--help} output format.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Global Variables, Argp Parsers, , Argp
|
|
|
|
@subsection Argp Global Variables
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
These variables make it easy for user programs to implement the
|
|
|
|
@samp{--version} option and provide a bug-reporting address in the
|
|
|
|
@samp{--help} output. These are implemented in argp by default.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftypevar {const char *} argp_program_version
|
|
|
|
If defined or set by the user program to a non-zero value, then a
|
2001-06-29 03:19:02 +02:00
|
|
|
@samp{--version} option is added when parsing with @code{argp_parse},
|
|
|
|
which will print the @samp{--version} string followed by a newline and
|
|
|
|
exit. The exception to this is if the @code{ARGP_NO_EXIT} flag is used.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypevar
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftypevar {const char *} argp_program_bug_address
|
|
|
|
If defined or set by the user program to a non-zero value,
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{argp_program_bug_address} should point to a string that will be
|
|
|
|
printed at the end of the standard output for the @samp{--help} option,
|
|
|
|
embedded in a sentence that says @samp{Report bugs to @var{address}.}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypevar
|
|
|
|
|
|
|
|
@need 1500
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@defvar argp_program_version_hook
|
2001-06-29 03:19:02 +02:00
|
|
|
If defined or set by the user program to a non-zero value, a
|
|
|
|
@samp{--version} option is added when parsing with @code{arg_parse},
|
|
|
|
which prints the program version and exits with a status of zero. This
|
|
|
|
is not the case if the @code{ARGP_NO_HELP} flag is used. If the
|
|
|
|
@code{ARGP_NO_EXIT} flag is set, the exit behavior of the program is
|
|
|
|
suppressed or modified, as when the argp parser is going to be used by
|
|
|
|
other programs.
|
|
|
|
|
|
|
|
It should point to a function with this type of signature:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
void @var{print-version} (FILE *@var{stream}, struct argp_state *@var{state})
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
@xref{Argp Parsing State}, for an explanation of @var{state}.
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
This variable takes precedence over @code{argp_program_version}, and is
|
|
|
|
useful if a program has version information not easily expressed in a
|
|
|
|
simple string.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end defvar
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftypevar error_t argp_err_exit_status
|
2001-06-29 03:19:02 +02:00
|
|
|
This is the exit status used when argp exits due to a parsing error. If
|
|
|
|
not defined or set by the user program, this defaults to:
|
1997-06-05 13:28:54 +02:00
|
|
|
@code{EX_USAGE} from @file{<sysexits.h>}.
|
|
|
|
@end deftypevar
|
|
|
|
|
|
|
|
@node Argp Parsers, Argp Flags, Argp Global Variables, Argp
|
|
|
|
@subsection Specifying Argp Parsers
|
|
|
|
|
|
|
|
The first argument to the @code{argp_parse} function is a pointer to a
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{struct argp}, which is known as an @dfn{argp parser}:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftp {Data Type} {struct argp}
|
|
|
|
This structure specifies how to parse a given set of options and
|
|
|
|
arguments, perhaps in conjunction with other argp parsers. It has the
|
|
|
|
following fields:
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item const struct argp_option *options
|
|
|
|
A pointer to a vector of @code{argp_option} structures specifying which
|
|
|
|
options this argp parser understands; it may be zero if there are no
|
|
|
|
options at all. @xref{Argp Option Vectors}.
|
|
|
|
|
|
|
|
@item argp_parser_t parser
|
|
|
|
A pointer to a function that defines actions for this parser; it is
|
|
|
|
called for each option parsed, and at other well-defined points in the
|
2001-06-29 03:19:02 +02:00
|
|
|
parsing process. A value of zero is the same as a pointer to a function
|
|
|
|
that always returns @code{ARGP_ERR_UNKNOWN}. @xref{Argp Parser
|
|
|
|
Functions}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item const char *args_doc
|
2001-06-29 03:19:02 +02:00
|
|
|
If non-zero, a string describing what non-option arguments are called by
|
|
|
|
this parser. This is only used to print the @samp{Usage:} message. If
|
|
|
|
it contains newlines, the strings separated by them are considered
|
|
|
|
alternative usage patterns and printed on separate lines. Lines after
|
|
|
|
the first are prefixed by @samp{ or: } instead of @samp{Usage:}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item const char *doc
|
|
|
|
If non-zero, a string containing extra text to be printed before and
|
|
|
|
after the options in a long help message, with the two sections
|
|
|
|
separated by a vertical tab (@code{'\v'}, @code{'\013'}) character. By
|
|
|
|
convention, the documentation before the options is just a short string
|
2001-06-29 03:19:02 +02:00
|
|
|
explaining what the program does. Documentation printed after the
|
|
|
|
options describe behavior in more detail.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item const struct argp_child *children
|
2001-06-29 03:19:02 +02:00
|
|
|
A pointer to a vector of @code{argp_children} structures. This pointer
|
|
|
|
specifies which additional argp parsers should be combined with this
|
|
|
|
one. @xref{Argp Children}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item char *(*help_filter)(int @var{key}, const char *@var{text}, void *@var{input})
|
2001-06-29 03:19:02 +02:00
|
|
|
If non-zero, a pointer to a function that filters the output of help
|
1997-06-05 13:28:54 +02:00
|
|
|
messages. @xref{Argp Help Filtering}.
|
2000-12-28 09:40:59 +01:00
|
|
|
|
|
|
|
@item const char *argp_domain
|
|
|
|
If non-zero, the strings used in the argp library are translated using
|
2001-06-29 03:19:02 +02:00
|
|
|
the domain described by this string. If zero, the current default domain
|
|
|
|
is used.
|
2000-12-28 09:40:59 +01:00
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
@end table
|
|
|
|
@end deftp
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
Of the above group, @code{options}, @code{parser}, @code{args_doc}, and
|
|
|
|
the @code{doc} fields are usually all that are needed. If an argp
|
|
|
|
parser is defined as an initialized C variable, only the fields used
|
|
|
|
need be specified in the initializer. The rest will default to zero due
|
|
|
|
to the way C structure initialization works. This design is exploited in
|
|
|
|
most argp structures; the most-used fields are grouped near the
|
|
|
|
beginning, the unused fields left unspecified.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@menu
|
|
|
|
* Options: Argp Option Vectors. Specifying options in an argp parser.
|
|
|
|
* Argp Parser Functions:: Defining actions for an argp parser.
|
|
|
|
* Children: Argp Children. Combining multiple argp parsers.
|
|
|
|
* Help Filtering: Argp Help Filtering. Customizing help output for an argp parser.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Option Vectors, Argp Parser Functions, Argp Parsers, Argp Parsers
|
|
|
|
@subsection Specifying Options in an Argp Parser
|
|
|
|
|
|
|
|
The @code{options} field in a @code{struct argp} points to a vector of
|
|
|
|
@code{struct argp_option} structures, each of which specifies an option
|
2001-06-29 03:19:02 +02:00
|
|
|
that the argp parser supports. Multiple entries may be used for a single
|
|
|
|
option provided it has multiple names. This should be terminated by an
|
|
|
|
entry with zero in all fields. Note that when using an initialized C
|
|
|
|
array for options, writing @code{@{ 0 @}} is enough to achieve this.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftp {Data Type} {struct argp_option}
|
|
|
|
This structure specifies a single option that an argp parser
|
2001-06-29 03:19:02 +02:00
|
|
|
understands, as well as how to parse and document that option. It has
|
|
|
|
the following fields:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item const char *name
|
|
|
|
The long name for this option, corresponding to the long option
|
2001-06-29 03:19:02 +02:00
|
|
|
@samp{--@var{name}}; this field may be zero if this option @emph{only}
|
|
|
|
has a short name. To specify multiple names for an option, additional
|
|
|
|
entries may follow this one, with the @code{OPTION_ALIAS} flag
|
|
|
|
set. @xref{Argp Option Flags}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int key
|
2001-06-29 03:19:02 +02:00
|
|
|
The integer key provided by the current option to the option parser. If
|
|
|
|
@var{key} has a value that is a printable @sc{ascii} character (i.e.,
|
|
|
|
@code{isascii (@var{key})} is true), it @emph{also} specifies a short
|
|
|
|
option @samp{-@var{char}}, where @var{char} is the @sc{ascii} character
|
|
|
|
with the code @var{key}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item const char *arg
|
|
|
|
If non-zero, this is the name of an argument associated with this
|
|
|
|
option, which must be provided (e.g., with the
|
|
|
|
@samp{--@var{name}=@var{value}} or @samp{-@var{char} @var{value}}
|
2001-06-29 03:19:02 +02:00
|
|
|
syntaxes), unless the @code{OPTION_ARG_OPTIONAL} flag (@pxref{Argp
|
|
|
|
Option Flags}) is set, in which case it @emph{may} be provided.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int flags
|
2001-06-29 03:19:02 +02:00
|
|
|
Flags associated with this option, some of which are referred to above.
|
1997-06-05 13:28:54 +02:00
|
|
|
@xref{Argp Option Flags}.
|
|
|
|
|
|
|
|
@item const char *doc
|
|
|
|
A documentation string for this option, for printing in help messages.
|
|
|
|
|
|
|
|
If both the @code{name} and @code{key} fields are zero, this string
|
2001-06-29 03:19:02 +02:00
|
|
|
will be printed tabbed left from the normal option column, making it
|
|
|
|
useful as a group header. This will be the first thing printed in its
|
|
|
|
group. In this usage, it's conventional to end the string with a
|
1997-06-05 13:28:54 +02:00
|
|
|
@samp{:} character.
|
|
|
|
|
|
|
|
@item int group
|
2001-06-29 03:19:02 +02:00
|
|
|
Group identity for this option.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
In a long help message, options are sorted alphabetically within each
|
1997-07-24 03:36:01 +02:00
|
|
|
group, and the groups presented in the order 0, 1, 2, @dots{}, @var{n},
|
2001-06-29 03:19:02 +02:00
|
|
|
@minus{}@var{m}, @dots{}, @minus{}2, @minus{}1.
|
|
|
|
|
|
|
|
Every entry in an options array with this field 0 will inherit the group
|
|
|
|
number of the previous entry, or zero if it's the first one. If it's a
|
|
|
|
group header with @code{name} and @code{key} fields both zero, the
|
|
|
|
previous entry + 1 is the default. Automagic options such as
|
|
|
|
@samp{--help} are put into group @minus{}1.
|
|
|
|
|
|
|
|
Note that because of C structure initialization rules, this field often
|
|
|
|
need not be specified, because 0 is the correct value.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end table
|
|
|
|
@end deftp
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
@menu
|
|
|
|
* Flags: Argp Option Flags. Flags for options.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Option Flags, , , Argp Option Vectors
|
|
|
|
@subsubsection Flags for Argp Options
|
|
|
|
|
|
|
|
The following flags may be or'd together in the @code{flags} field of a
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{struct argp_option}. These flags control various aspects of how
|
|
|
|
that option is parsed or displayed in help messages:
|
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item OPTION_ARG_OPTIONAL
|
|
|
|
The argument associated with this option is optional.
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item OPTION_HIDDEN
|
|
|
|
This option isn't displayed in any help messages.
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item OPTION_ALIAS
|
|
|
|
This option is an alias for the closest previous non-alias option. This
|
|
|
|
means that it will be displayed in the same help entry, and will inherit
|
2001-06-29 03:19:02 +02:00
|
|
|
fields other than @code{name} and @code{key} from the option being
|
|
|
|
aliased.
|
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item OPTION_DOC
|
2001-06-29 03:19:02 +02:00
|
|
|
This option isn't actually an option and should be ignored by the actual
|
|
|
|
option parser. It is an arbitrary section of documentation that should
|
|
|
|
be displayed in much the same manner as the options. This is known as a
|
|
|
|
@dfn{documentation option}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
If this flag is set, then the option @code{name} field is displayed
|
2001-06-29 03:19:02 +02:00
|
|
|
unmodified (e.g., no @samp{--} prefix is added) at the left-margin where
|
|
|
|
a @emph{short} option would normally be displayed, and this
|
|
|
|
documentation string is left in it's usual place. For purposes of
|
|
|
|
sorting, any leading whitespace and punctuation is ignored, unless the
|
|
|
|
first non-whitespace character is @samp{-}. This entry is displayed
|
|
|
|
after all options, after @code{OPTION_DOC} entries with a leading
|
|
|
|
@samp{-}, in the same group.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item OPTION_NO_USAGE
|
2001-06-29 03:19:02 +02:00
|
|
|
This option shouldn't be included in `long' usage messages, but should
|
|
|
|
still be included in other help messages. This is intended for options
|
|
|
|
that are completely documented in an argp's @code{args_doc}
|
|
|
|
field. @xref{Argp Parsers}. Including this option in the generic usage
|
|
|
|
list would be redundant, and should be avoided.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
For instance, if @code{args_doc} is @code{"FOO BAR\n-x BLAH"}, and the
|
|
|
|
@samp{-x} option's purpose is to distinguish these two cases, @samp{-x}
|
|
|
|
should probably be marked @code{OPTION_NO_USAGE}.
|
|
|
|
@end vtable
|
|
|
|
|
|
|
|
@node Argp Parser Functions, Argp Children, Argp Option Vectors, Argp Parsers
|
|
|
|
@subsection Argp Parser Functions
|
|
|
|
|
|
|
|
The function pointed to by the @code{parser} field in a @code{struct
|
|
|
|
argp} (@pxref{Argp Parsers}) defines what actions take place in response
|
2001-06-29 03:19:02 +02:00
|
|
|
to each option or argument parsed. It is also used as a hook, allowing a
|
|
|
|
parser to perform tasks at certain other points during parsing.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@need 2000
|
|
|
|
Argp parser functions have the following type signature:
|
|
|
|
|
|
|
|
@cindex argp parser functions
|
|
|
|
@smallexample
|
|
|
|
error_t @var{parser} (int @var{key}, char *@var{arg}, struct argp_state *@var{state})
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
where the arguments are as follows:
|
|
|
|
|
|
|
|
@table @var
|
|
|
|
@item key
|
|
|
|
For each option that is parsed, @var{parser} is called with a value of
|
2001-06-29 03:19:02 +02:00
|
|
|
@var{key} from that option's @code{key} field in the option
|
|
|
|
vector. @xref{Argp Option Vectors}. @var{parser} is also called at
|
|
|
|
other times with special reserved keys, such as @code{ARGP_KEY_ARG} for
|
1997-06-05 13:28:54 +02:00
|
|
|
non-option arguments. @xref{Argp Special Keys}.
|
|
|
|
|
|
|
|
@item arg
|
2001-06-29 03:19:02 +02:00
|
|
|
If @var{key} is an option, @var{arg} is its given value. This defaults
|
|
|
|
to zero if no value is specified. Only options that have a non-zero
|
|
|
|
@code{arg} field can ever have a value. These must @emph{always} have a
|
|
|
|
value unless the @code{OPTION_ARG_OPTIONAL} flag is specified. If the
|
|
|
|
input being parsed specifies a value for an option that doesn't allow
|
|
|
|
one, an error results before @var{parser} ever gets called.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
If @var{key} is @code{ARGP_KEY_ARG}, @var{arg} is a non-option
|
|
|
|
argument. Other special keys always have a zero @var{arg}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item state
|
|
|
|
@var{state} points to a @code{struct argp_state}, containing useful
|
2001-06-29 03:19:02 +02:00
|
|
|
information about the current parsing state for use by
|
|
|
|
@var{parser}. @xref{Argp Parsing State}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end table
|
|
|
|
|
|
|
|
When @var{parser} is called, it should perform whatever action is
|
2001-06-29 03:19:02 +02:00
|
|
|
appropriate for @var{key}, and return @code{0} for success,
|
|
|
|
@code{ARGP_ERR_UNKNOWN} if the value of @var{key} is not handled by this
|
|
|
|
parser function, or a unix error code if a real error
|
|
|
|
occurred. @xref{Error Codes}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftypevr Macro int ARGP_ERR_UNKNOWN
|
|
|
|
Argp parser functions should return @code{ARGP_ERR_UNKNOWN} for any
|
|
|
|
@var{key} value they do not recognize, or for non-option arguments
|
2001-06-29 03:19:02 +02:00
|
|
|
(@code{@var{key} == ARGP_KEY_ARG}) that they are not equipped to handle.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypevr
|
|
|
|
|
|
|
|
@need 3000
|
|
|
|
A typical parser function uses a switch statement on @var{key}:
|
|
|
|
|
|
|
|
@smallexample
|
|
|
|
error_t
|
|
|
|
parse_opt (int key, char *arg, struct argp_state *state)
|
|
|
|
@{
|
|
|
|
switch (key)
|
|
|
|
@{
|
|
|
|
case @var{option_key}:
|
|
|
|
@var{action}
|
|
|
|
break;
|
|
|
|
@dots{}
|
|
|
|
default:
|
|
|
|
return ARGP_ERR_UNKNOWN;
|
|
|
|
@}
|
|
|
|
return 0;
|
|
|
|
@}
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Keys: Argp Special Keys. Special values for the @var{key} argument.
|
|
|
|
* State: Argp Parsing State. What the @var{state} argument refers to.
|
|
|
|
* Functions: Argp Helper Functions. Functions to help during argp parsing.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Special Keys, Argp Parsing State, , Argp Parser Functions
|
|
|
|
@subsubsection Special Keys for Argp Parser Functions
|
|
|
|
|
|
|
|
In addition to key values corresponding to user options, the @var{key}
|
|
|
|
argument to argp parser functions may have a number of other special
|
2001-06-29 03:19:02 +02:00
|
|
|
values. In the following example @var{arg} and @var{state} refer to
|
|
|
|
parser function arguments. @xref{Argp Parser Functions}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_ARG
|
|
|
|
This is not an option at all, but rather a command line argument, whose
|
|
|
|
value is pointed to by @var{arg}.
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
When there are multiple parser functions in play due to argp parsers
|
|
|
|
being combined, it's impossible to know which one will handle a specific
|
|
|
|
argument. Each is called until one returns 0 or an error other than
|
|
|
|
@code{ARGP_ERR_UNKNOWN}; if an argument is not handled,
|
1997-06-05 13:28:54 +02:00
|
|
|
@code{argp_parse} immediately returns success, without parsing any more
|
|
|
|
arguments.
|
|
|
|
|
|
|
|
Once a parser function returns success for this key, that fact is
|
2001-06-29 03:19:02 +02:00
|
|
|
recorded, and the @code{ARGP_KEY_NO_ARGS} case won't be
|
|
|
|
used. @emph{However}, if while processing the argument a parser function
|
1997-06-05 13:28:54 +02:00
|
|
|
decrements the @code{next} field of its @var{state} argument, the option
|
|
|
|
won't be considered processed; this is to allow you to actually modify
|
2001-06-29 03:19:02 +02:00
|
|
|
the argument, perhaps into an option, and have it processed again.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
Update.
1997-06-19 19:38 Ulrich Drepper <drepper@cygnus.com>
* features.h: Define __STDC_IEC_559__ and _STDC_IEC_559_COMPLEX__.
* elf/dl-minimal.c (__dcgettext): Remove assertion.
* inet/rcmd.c: Correct a few typos. Reported by Eric Troan.
* manual/Makefile (distribute): Add dir.
* manual/dir: New file.
* math/Makefile (libm-support): Rename s_rinttol, s_rinttoll,
s_roundtol, and s_roundtoll to s_lrint, s_llrint, s_lround,
and s_llround respectively.
(libm-calls): Add e_gamma_r.
* math/libm-test.c (check_int_exc): New function.
(signbit_test): Remove test for sign of NaN.
(gamma_test): Clear exception after test of existence.
Correct tests and and epsilons.
(lgamma_test): Likewise.
(ilogb_test): Correct all tests.
(scalb_test): Rewrite.
(rinttol_test): Rename to lrint_test and correct tests.
(rinttoll_test): Likewise.
(roundtol_test): Likewise.
(roundtoll_test): Likewise.
(main): Call lrint/lround functions instead of rinttol/roundtol.
* math/math.h: Change prototypes for rinttol/roundtol.
* math/mathcalls.h: Rearrange prototypes according to ISO C9X draft.
* sysdeps/generic/mathbits.h: Define FP_ILOGB0 and FP_ILOGBNAN.
* sysdeps/i386/mathbits.h: Likewise.
* sysdeps/libm-i387/e_scalb.S: Handle special cases correctly.
* sysdeps/libm-i387/e_scalbf.S: Likewise.
* sysdeps/libm-i387/e_scalbl.S: Likewise.
* sysdeps/libm-i387/s_asinh.S: Handle -inf correctly.
* sysdeps/libm-i387/s_asinhf.S: Likewise.
* sysdeps/libm-i387/s_asinhl.S: Likewise.
* sysdeps/libm-i387/s_ilogb.S: Optimize.
* sysdeps/libm-i387/s_ilogbf.S: Likewise.
* sysdeps/libm-i387/s_ilogbl.S: Likewise.
* sysdeps/libm-i387/s_rinttol.S: Rename to...
* sysdeps/libm-i387/s_lrint.S: ...this.
* sysdeps/libm-i387/s_rinttoll.S: Rename to...
* sysdeps/libm-i387/s_llrint.S: ...this.
* sysdeps/libm-i387/s_remquo.S: Correctly set sign of remainder.
* sysdeps/libm-i387/s_remquof.S: Likewise.
* sysdeps/libm-i387/s_remquol.S: Likewise.
* sysdeps/libm-i387/e_gamma_r.c: New file. Implementation of gamma
function according to ISO C.
* sysdeps/libm-i387/e_gammaf_r.c: New file.
* sysdeps/libm-i387/e_gammal_r.c: New file.
* sysdeps/libm-i387/e_lgamma_r.c: Don't let optimize compile the
generation of exceptions away.
* sysdeps/libm-i387/e_lgammaf_r.c: Likewise.
* sysdeps/libm-i387/k_standard.c: Correct return value for infinity
points of gamma function when not SVID mode.
* sysdeps/libm-i387/s_rinttoll.c: Renamed to...
* sysdeps/libm-i387/s_llrint.c: ...this.
* sysdeps/libm-i387/s_rinttol.c: Renamed to...
* sysdeps/libm-i387/s_lrint.c: ...this.
* sysdeps/libm-i387/s_roundtoll.c: Renamed to...
* sysdeps/libm-i387/s_llround.c: ...this.
* sysdeps/libm-i387/s_roundtol.c: Renamed to...
* sysdeps/libm-i387/s_lround.c: ..this.
* sysdeps/libm-i387/s_scalbn.c: Change second parameter according to
ISO C.
* sysdeps/libm-i387/s_scalbnf.c: Likewise.
* sysdeps/libm-i387/s_scalbnl.c: Likewise.
* sysdeps/libm-i387/w_gamma.c: Call __ieee754_gamma_r if library
mode is not _SVID_.
* sysdeps/libm-i387/w_gammaf.c: Likewise.
* sysdeps/libm-i387/w_gammal.c: Likewise.
* sysdeps/m68k/fpu/__math.h: Rename __rinttol to __lrint and
rinttol to lrint.
* sysdeps/m68k/fpu/s_rinttol.c: Renamed to...
* sysdeps/m68k/fpu/s_lrint.c: ...this.
* sysdeps/m68k/fpu/s_rinttoll.c: Renamed to...
* sysdeps/m68k/fpu/s_llrint.c: ...this.
* md5-crypt/Makefile: Link md5test program with md5.o.
* stdio-common/temptest.c: Don't use __stdio_gen_tempname which
is not exported by the libc.so.
* stdio-common/vfscanf.c: Correct scanning of strings after last
change.
* sysdeps/unix/sysv/linux/i386/sysdep.S: Use .comm to define errno.
1997-06-19 07:37 H.J. Lu <hjl@gnu.ai.mit.edu>
* time/tzfile.c (__tzfile_read): Store getc () return in int.
1997-06-13 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (argp_version_parser): Include `(PROGRAM ERROR)' in
the no-version error text to indicate that something's fucked.
[!_] (N_): New macro.
(argp_default_options, argp_version_options): Wrap doc strings in N_().
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (parser_parse_opt): Detect and report unhandled
options here.
(parser_parse_arg): Handle ARGP_KEY_ARGS here.
Adjust NEXT pointer back if we fail to parse anything.
(parser_parse_next): Simplify arg code. Leave state NEXT frobbing
to parser_parse_arg.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp.h (ARGP_KEY_ARGS, ARGP_KEY_FINI): New macros.
* argp/argp-parse.c (parser_finalize): Do another pass over the
parsers with ARGP_KEY_FINI.
1997-06-18 Miles Bader <miles@gnu.ai.mit.edu>
* string/Makefile (routines): Add argz-replace.
1997-06-16 00:16 Miles Bader <miles@gnu.ai.mit.edu>
* manual/string.texi (Argz Functions): Document argz_replace.
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* string/argz.h (__argz_replace, argz_replace): New declarations.
* string/argz-replace.c: New file.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* manual/argp.texi (Argp Special Keys): Document ARGP_KEY_ARGS.
1997-06-16 23:08 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makeconfig (libc-map): Remove definition.
* Makerules (libc-map): Define it here, using the full name.
(load-map-file): Remove case for empty $(..).
($(common-objpfx)libc.so): Revert last change.
1997-06-17 22:18 Mark Kettenis <kettenis@phys.uva.nl>
* login/programs/utmpd.c (main): Improve signal handling.
* login/programs/request.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/utmpd.h (setutent_request, updwtmp_request):
Get rid of fixed length file field.
* login/utmp_daemon.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/request.c (do_pututline):
Don't fail if connection->position is -1 on entry.
1997-06-15 16:32 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (updwtmp_file): Use the same method for
appending an entry as in pututline_file.
1997-06-11 18:59 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (getutent_r_file):
Use read lock instead of write lock.
(getutline_r_file, internal_getut_r): Lock utmp file.
(updwtmp_file): Use fcntl to lock file instead of flock.
1997-06-18 00:11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* stdio-common/vfscanf.c (inchar, ungetc): Don't count EOF as
character read in/put back.
* stdio-common/tstscanf.c: Add test case for this.
1997-06-17 22:17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* libc.map: Add more symbols.
1997-06-18 12:01 Ulrich Drepper <drepper@cygnus.com>
* manual/Makefile (install): Make sure `dir' file exists if we use
install-info.
1997-06-17 19:32 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* manual/Makefile (info): Depend on dir-add.info.
1997-06-17 17:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/ldd.bash.in: Fix spacing in message.
1997-06-17 14:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/do-rel.h (elf_dynamic_do_rel): Always use version
information if available.
1997-06-17 11:34 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sunrpc/Makefile ($(rpcsvc:%.x=$(objpfx)rpcsvc/%.h)): Make
command non-empty to force make to recheck modification time.
($(rpcsvc:%.x=$(objpfx)x%.c)): Likewise.
1997-06-17 00:26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/stub/e_acoshl.c: Set errno to ENOSYS.
* sysdeps/stub/e_acosl.c: Likewise.
* sysdeps/stub/e_asinl.c: Likewise.
* sysdeps/stub/e_atan2l.c: Likewise.
* sysdeps/stub/e_expl.c: Likewise.
* sysdeps/stub/e_fmodl.c: Likewise.
* sysdeps/stub/e_j0l.c: Likewise.
* sysdeps/stub/e_j1l.c: Likewise.
* sysdeps/stub/e_jnl.c: Likewise.
* sysdeps/stub/e_lgammal_r.c: Likewise.
* sysdeps/stub/e_log10l.c: Likewise.
* sysdeps/stub/e_logl.c: Likewise.
* sysdeps/stub/e_powl.c: Likewise.
* sysdeps/stub/e_rem_pio2l.c: Likewise.
* sysdeps/stub/e_sqrtl.c: Likewise.
* sysdeps/stub/k_cosl.c: Likewise.
* sysdeps/stub/k_rem_pio2l.c: Likewise.
* sysdeps/stub/k_sinl.c: Likewise.
* sysdeps/stub/k_tanl.c: Likewise.
* sysdeps/stub/s_atanl.c: Likewise.
* sysdeps/stub/s_erfl.c: Likewise.
* sysdeps/stub/s_exp2.c: Likewise.
* sysdeps/stub/s_exp2f.c: Likewise.
* sysdeps/stub/s_exp2l.c: Likewise.
* sysdeps/stub/s_expm1l.c: Likewise.
* sysdeps/stub/s_log1pl.c: Likewise.
* sysdeps/stub/s_log2l.c: Likewise.
1997-06-18 11:46 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/w_gamma.c: If _LIB_VERSION is _SVID_ compute
result as before last change.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
1997-06-16 23:37 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/libm-ieee754/s_remquo.c: Fix off-by-one when computing
quotient.
* sysdeps/libm-ieee754/s_remquof.c: Likewise.
* sysdeps/libm-ieee754/s_remquol.c: Likewise.
* sysdeps/m68k/fpu/s_remquo.c: Remove FIXME and special case for
quotient.
* sysdeps/libm-ieee754/w_gamma.c: Add missing call to exp
function. Don't use global signgam.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
* math/Makefile (libm-calls): Remove w_gamma_r.
* sysdeps/libm-ieee754/w_gamma_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammaf_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammal_r.c: Remove file.
* math/libm-test.c (atanh_test): Declare x only if needed.
(signbit_test): Fix typo.
(gamma_test): Check whether function is implemented. Add
epsilons.
(lgamma_test): Likewise.
(fmod_test): Add epsilons.
(exp2_test): Use right function for existence test.
1997-06-07 09:20 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/powerpc/Dist: Add fenv_const.c.
* sysdeps/unix/sysv/linux/Dist: Add net/if_slip.h.
* sysdeps/unix/sysv/linux/powerpc/Dist: Add init-first.h and
syscall.h.
* sysdeps/unix/sysv/linux/sparc/Dist: Add init-first.h.
* string/Makefile (distribute): Add tst-svc.expect.
* nis/Makefile (distribute): Add nis_intern.h and Banner.
* elf/Makefile (distribute): Add dl-hash.h.
* Rules (subdir_echo-distinfo): Add headers from $(distribute).
* login/Makefile (others): Add utmpdump.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
net/if_slip.h.
* manual/Makefile (dir-add.texi): Also look in indirectly included
files.
1997-06-16 23:15 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/configure.in: Remove commands to
generate stdio_lim.h.
* sysdeps/unix/sysv/linux/mk-stdiolim.c: Remove.
* sysdeps/unix/sysv/linux/Makefile: Add rules to generate
stdio_lim.h here.
(common-generated): Add generated files.
(inhibit-stdio_lim): Define.
* sysdeps/posix/Makefile [$(inhibit-stdio_lim)=yes]: Disable rules
to generate stdio_lim.h.
* sysdeps/unix/sysv/linux/Makefile: Suppress inclusion of
dependecy files if no_deps is set.
($(objpfx)syscall-%.d): Add header file as target to dependency
generation.
1997-06-14 19:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/arm/Dist: New file.
1997-06-14 17:59 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* extra-lib.mk (others): Depend on versioned shared library, not
the unversioned one.
* Makerules (build-shlib): Don't make the version link here.
($(common-objpfx)libc.so$(libc.so-version)): New rule for libc
version link.
1997-06-16 03:07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/k_standard.c: Undo change of Tue Aug 6
01:13:56 1996.
* argp/argp-help.c (argp_args_usage): Supply correct argp to
filter_doc.
* argp/argp-help.c (hol_add_cluster): Initialize CL->depth.
* argp/argp-help.c (_help): Supply STATE to argp_args_usage.
* argp/argp.h (ARGP_KEY_HELP_ARGS_DOC): New macro.
* argp/argp-fmtstream.c: Add casts to prevent warnings.
* argp/argp.h (OPTION_NO_USAGE): New macro.
* argp/argp-help.c (usage_long_opt, usage_argful_short_opt,
* argp/argp-fmtstream.c (__argp_fmtstream_update): Account for case
* argp/argp-help.c <stddef.h>: New include.
* argp/argp.h (argp_state_help, __argp_state_help, argp_usage,
* argp/argp.h (argp_program_bug_address): Make const.
* argp/argp-parse.c (argp_default_parser): Set STATE->name for OPT_PROGNAME.
* argp/argp-help.c (__argp_error, __argp_failure, __argp_state_help):
* argp/argp-parse.c (parser_init): Set PARSER->state.flags.
1997-06-19 21:11:22 +02:00
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_ARGS
|
|
|
|
If a parser function returns @code{ARGP_ERR_UNKNOWN} for
|
|
|
|
@code{ARGP_KEY_ARG}, it is immediately called again with the key
|
|
|
|
@code{ARGP_KEY_ARGS}, which has a similar meaning, but is slightly more
|
|
|
|
convenient for consuming all remaining arguments. @var{arg} is 0, and
|
|
|
|
the tail of the argument vector may be found at @code{@var{state}->argv
|
|
|
|
+ @var{state}->next}. If success is returned for this key, and
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{@var{state}->next} is unchanged, all remaining arguments are
|
|
|
|
considered to have been consumed. Otherwise, the amount by which
|
|
|
|
@code{@var{state}->next} has been adjusted indicates how many were used.
|
|
|
|
Here's an example that uses both, for different args:
|
|
|
|
|
Update.
1997-06-19 19:38 Ulrich Drepper <drepper@cygnus.com>
* features.h: Define __STDC_IEC_559__ and _STDC_IEC_559_COMPLEX__.
* elf/dl-minimal.c (__dcgettext): Remove assertion.
* inet/rcmd.c: Correct a few typos. Reported by Eric Troan.
* manual/Makefile (distribute): Add dir.
* manual/dir: New file.
* math/Makefile (libm-support): Rename s_rinttol, s_rinttoll,
s_roundtol, and s_roundtoll to s_lrint, s_llrint, s_lround,
and s_llround respectively.
(libm-calls): Add e_gamma_r.
* math/libm-test.c (check_int_exc): New function.
(signbit_test): Remove test for sign of NaN.
(gamma_test): Clear exception after test of existence.
Correct tests and and epsilons.
(lgamma_test): Likewise.
(ilogb_test): Correct all tests.
(scalb_test): Rewrite.
(rinttol_test): Rename to lrint_test and correct tests.
(rinttoll_test): Likewise.
(roundtol_test): Likewise.
(roundtoll_test): Likewise.
(main): Call lrint/lround functions instead of rinttol/roundtol.
* math/math.h: Change prototypes for rinttol/roundtol.
* math/mathcalls.h: Rearrange prototypes according to ISO C9X draft.
* sysdeps/generic/mathbits.h: Define FP_ILOGB0 and FP_ILOGBNAN.
* sysdeps/i386/mathbits.h: Likewise.
* sysdeps/libm-i387/e_scalb.S: Handle special cases correctly.
* sysdeps/libm-i387/e_scalbf.S: Likewise.
* sysdeps/libm-i387/e_scalbl.S: Likewise.
* sysdeps/libm-i387/s_asinh.S: Handle -inf correctly.
* sysdeps/libm-i387/s_asinhf.S: Likewise.
* sysdeps/libm-i387/s_asinhl.S: Likewise.
* sysdeps/libm-i387/s_ilogb.S: Optimize.
* sysdeps/libm-i387/s_ilogbf.S: Likewise.
* sysdeps/libm-i387/s_ilogbl.S: Likewise.
* sysdeps/libm-i387/s_rinttol.S: Rename to...
* sysdeps/libm-i387/s_lrint.S: ...this.
* sysdeps/libm-i387/s_rinttoll.S: Rename to...
* sysdeps/libm-i387/s_llrint.S: ...this.
* sysdeps/libm-i387/s_remquo.S: Correctly set sign of remainder.
* sysdeps/libm-i387/s_remquof.S: Likewise.
* sysdeps/libm-i387/s_remquol.S: Likewise.
* sysdeps/libm-i387/e_gamma_r.c: New file. Implementation of gamma
function according to ISO C.
* sysdeps/libm-i387/e_gammaf_r.c: New file.
* sysdeps/libm-i387/e_gammal_r.c: New file.
* sysdeps/libm-i387/e_lgamma_r.c: Don't let optimize compile the
generation of exceptions away.
* sysdeps/libm-i387/e_lgammaf_r.c: Likewise.
* sysdeps/libm-i387/k_standard.c: Correct return value for infinity
points of gamma function when not SVID mode.
* sysdeps/libm-i387/s_rinttoll.c: Renamed to...
* sysdeps/libm-i387/s_llrint.c: ...this.
* sysdeps/libm-i387/s_rinttol.c: Renamed to...
* sysdeps/libm-i387/s_lrint.c: ...this.
* sysdeps/libm-i387/s_roundtoll.c: Renamed to...
* sysdeps/libm-i387/s_llround.c: ...this.
* sysdeps/libm-i387/s_roundtol.c: Renamed to...
* sysdeps/libm-i387/s_lround.c: ..this.
* sysdeps/libm-i387/s_scalbn.c: Change second parameter according to
ISO C.
* sysdeps/libm-i387/s_scalbnf.c: Likewise.
* sysdeps/libm-i387/s_scalbnl.c: Likewise.
* sysdeps/libm-i387/w_gamma.c: Call __ieee754_gamma_r if library
mode is not _SVID_.
* sysdeps/libm-i387/w_gammaf.c: Likewise.
* sysdeps/libm-i387/w_gammal.c: Likewise.
* sysdeps/m68k/fpu/__math.h: Rename __rinttol to __lrint and
rinttol to lrint.
* sysdeps/m68k/fpu/s_rinttol.c: Renamed to...
* sysdeps/m68k/fpu/s_lrint.c: ...this.
* sysdeps/m68k/fpu/s_rinttoll.c: Renamed to...
* sysdeps/m68k/fpu/s_llrint.c: ...this.
* md5-crypt/Makefile: Link md5test program with md5.o.
* stdio-common/temptest.c: Don't use __stdio_gen_tempname which
is not exported by the libc.so.
* stdio-common/vfscanf.c: Correct scanning of strings after last
change.
* sysdeps/unix/sysv/linux/i386/sysdep.S: Use .comm to define errno.
1997-06-19 07:37 H.J. Lu <hjl@gnu.ai.mit.edu>
* time/tzfile.c (__tzfile_read): Store getc () return in int.
1997-06-13 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (argp_version_parser): Include `(PROGRAM ERROR)' in
the no-version error text to indicate that something's fucked.
[!_] (N_): New macro.
(argp_default_options, argp_version_options): Wrap doc strings in N_().
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (parser_parse_opt): Detect and report unhandled
options here.
(parser_parse_arg): Handle ARGP_KEY_ARGS here.
Adjust NEXT pointer back if we fail to parse anything.
(parser_parse_next): Simplify arg code. Leave state NEXT frobbing
to parser_parse_arg.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp.h (ARGP_KEY_ARGS, ARGP_KEY_FINI): New macros.
* argp/argp-parse.c (parser_finalize): Do another pass over the
parsers with ARGP_KEY_FINI.
1997-06-18 Miles Bader <miles@gnu.ai.mit.edu>
* string/Makefile (routines): Add argz-replace.
1997-06-16 00:16 Miles Bader <miles@gnu.ai.mit.edu>
* manual/string.texi (Argz Functions): Document argz_replace.
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* string/argz.h (__argz_replace, argz_replace): New declarations.
* string/argz-replace.c: New file.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* manual/argp.texi (Argp Special Keys): Document ARGP_KEY_ARGS.
1997-06-16 23:08 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makeconfig (libc-map): Remove definition.
* Makerules (libc-map): Define it here, using the full name.
(load-map-file): Remove case for empty $(..).
($(common-objpfx)libc.so): Revert last change.
1997-06-17 22:18 Mark Kettenis <kettenis@phys.uva.nl>
* login/programs/utmpd.c (main): Improve signal handling.
* login/programs/request.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/utmpd.h (setutent_request, updwtmp_request):
Get rid of fixed length file field.
* login/utmp_daemon.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/request.c (do_pututline):
Don't fail if connection->position is -1 on entry.
1997-06-15 16:32 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (updwtmp_file): Use the same method for
appending an entry as in pututline_file.
1997-06-11 18:59 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (getutent_r_file):
Use read lock instead of write lock.
(getutline_r_file, internal_getut_r): Lock utmp file.
(updwtmp_file): Use fcntl to lock file instead of flock.
1997-06-18 00:11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* stdio-common/vfscanf.c (inchar, ungetc): Don't count EOF as
character read in/put back.
* stdio-common/tstscanf.c: Add test case for this.
1997-06-17 22:17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* libc.map: Add more symbols.
1997-06-18 12:01 Ulrich Drepper <drepper@cygnus.com>
* manual/Makefile (install): Make sure `dir' file exists if we use
install-info.
1997-06-17 19:32 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* manual/Makefile (info): Depend on dir-add.info.
1997-06-17 17:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/ldd.bash.in: Fix spacing in message.
1997-06-17 14:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/do-rel.h (elf_dynamic_do_rel): Always use version
information if available.
1997-06-17 11:34 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sunrpc/Makefile ($(rpcsvc:%.x=$(objpfx)rpcsvc/%.h)): Make
command non-empty to force make to recheck modification time.
($(rpcsvc:%.x=$(objpfx)x%.c)): Likewise.
1997-06-17 00:26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/stub/e_acoshl.c: Set errno to ENOSYS.
* sysdeps/stub/e_acosl.c: Likewise.
* sysdeps/stub/e_asinl.c: Likewise.
* sysdeps/stub/e_atan2l.c: Likewise.
* sysdeps/stub/e_expl.c: Likewise.
* sysdeps/stub/e_fmodl.c: Likewise.
* sysdeps/stub/e_j0l.c: Likewise.
* sysdeps/stub/e_j1l.c: Likewise.
* sysdeps/stub/e_jnl.c: Likewise.
* sysdeps/stub/e_lgammal_r.c: Likewise.
* sysdeps/stub/e_log10l.c: Likewise.
* sysdeps/stub/e_logl.c: Likewise.
* sysdeps/stub/e_powl.c: Likewise.
* sysdeps/stub/e_rem_pio2l.c: Likewise.
* sysdeps/stub/e_sqrtl.c: Likewise.
* sysdeps/stub/k_cosl.c: Likewise.
* sysdeps/stub/k_rem_pio2l.c: Likewise.
* sysdeps/stub/k_sinl.c: Likewise.
* sysdeps/stub/k_tanl.c: Likewise.
* sysdeps/stub/s_atanl.c: Likewise.
* sysdeps/stub/s_erfl.c: Likewise.
* sysdeps/stub/s_exp2.c: Likewise.
* sysdeps/stub/s_exp2f.c: Likewise.
* sysdeps/stub/s_exp2l.c: Likewise.
* sysdeps/stub/s_expm1l.c: Likewise.
* sysdeps/stub/s_log1pl.c: Likewise.
* sysdeps/stub/s_log2l.c: Likewise.
1997-06-18 11:46 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/w_gamma.c: If _LIB_VERSION is _SVID_ compute
result as before last change.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
1997-06-16 23:37 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/libm-ieee754/s_remquo.c: Fix off-by-one when computing
quotient.
* sysdeps/libm-ieee754/s_remquof.c: Likewise.
* sysdeps/libm-ieee754/s_remquol.c: Likewise.
* sysdeps/m68k/fpu/s_remquo.c: Remove FIXME and special case for
quotient.
* sysdeps/libm-ieee754/w_gamma.c: Add missing call to exp
function. Don't use global signgam.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
* math/Makefile (libm-calls): Remove w_gamma_r.
* sysdeps/libm-ieee754/w_gamma_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammaf_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammal_r.c: Remove file.
* math/libm-test.c (atanh_test): Declare x only if needed.
(signbit_test): Fix typo.
(gamma_test): Check whether function is implemented. Add
epsilons.
(lgamma_test): Likewise.
(fmod_test): Add epsilons.
(exp2_test): Use right function for existence test.
1997-06-07 09:20 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/powerpc/Dist: Add fenv_const.c.
* sysdeps/unix/sysv/linux/Dist: Add net/if_slip.h.
* sysdeps/unix/sysv/linux/powerpc/Dist: Add init-first.h and
syscall.h.
* sysdeps/unix/sysv/linux/sparc/Dist: Add init-first.h.
* string/Makefile (distribute): Add tst-svc.expect.
* nis/Makefile (distribute): Add nis_intern.h and Banner.
* elf/Makefile (distribute): Add dl-hash.h.
* Rules (subdir_echo-distinfo): Add headers from $(distribute).
* login/Makefile (others): Add utmpdump.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
net/if_slip.h.
* manual/Makefile (dir-add.texi): Also look in indirectly included
files.
1997-06-16 23:15 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/configure.in: Remove commands to
generate stdio_lim.h.
* sysdeps/unix/sysv/linux/mk-stdiolim.c: Remove.
* sysdeps/unix/sysv/linux/Makefile: Add rules to generate
stdio_lim.h here.
(common-generated): Add generated files.
(inhibit-stdio_lim): Define.
* sysdeps/posix/Makefile [$(inhibit-stdio_lim)=yes]: Disable rules
to generate stdio_lim.h.
* sysdeps/unix/sysv/linux/Makefile: Suppress inclusion of
dependecy files if no_deps is set.
($(objpfx)syscall-%.d): Add header file as target to dependency
generation.
1997-06-14 19:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/arm/Dist: New file.
1997-06-14 17:59 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* extra-lib.mk (others): Depend on versioned shared library, not
the unversioned one.
* Makerules (build-shlib): Don't make the version link here.
($(common-objpfx)libc.so$(libc.so-version)): New rule for libc
version link.
1997-06-16 03:07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/k_standard.c: Undo change of Tue Aug 6
01:13:56 1996.
* argp/argp-help.c (argp_args_usage): Supply correct argp to
filter_doc.
* argp/argp-help.c (hol_add_cluster): Initialize CL->depth.
* argp/argp-help.c (_help): Supply STATE to argp_args_usage.
* argp/argp.h (ARGP_KEY_HELP_ARGS_DOC): New macro.
* argp/argp-fmtstream.c: Add casts to prevent warnings.
* argp/argp.h (OPTION_NO_USAGE): New macro.
* argp/argp-help.c (usage_long_opt, usage_argful_short_opt,
* argp/argp-fmtstream.c (__argp_fmtstream_update): Account for case
* argp/argp-help.c <stddef.h>: New include.
* argp/argp.h (argp_state_help, __argp_state_help, argp_usage,
* argp/argp.h (argp_program_bug_address): Make const.
* argp/argp-parse.c (argp_default_parser): Set STATE->name for OPT_PROGNAME.
* argp/argp-help.c (__argp_error, __argp_failure, __argp_state_help):
* argp/argp-parse.c (parser_init): Set PARSER->state.flags.
1997-06-19 21:11:22 +02:00
|
|
|
|
|
|
|
@smallexample
|
2002-06-30 06:04:20 +02:00
|
|
|
@dots{}
|
Update.
1997-06-19 19:38 Ulrich Drepper <drepper@cygnus.com>
* features.h: Define __STDC_IEC_559__ and _STDC_IEC_559_COMPLEX__.
* elf/dl-minimal.c (__dcgettext): Remove assertion.
* inet/rcmd.c: Correct a few typos. Reported by Eric Troan.
* manual/Makefile (distribute): Add dir.
* manual/dir: New file.
* math/Makefile (libm-support): Rename s_rinttol, s_rinttoll,
s_roundtol, and s_roundtoll to s_lrint, s_llrint, s_lround,
and s_llround respectively.
(libm-calls): Add e_gamma_r.
* math/libm-test.c (check_int_exc): New function.
(signbit_test): Remove test for sign of NaN.
(gamma_test): Clear exception after test of existence.
Correct tests and and epsilons.
(lgamma_test): Likewise.
(ilogb_test): Correct all tests.
(scalb_test): Rewrite.
(rinttol_test): Rename to lrint_test and correct tests.
(rinttoll_test): Likewise.
(roundtol_test): Likewise.
(roundtoll_test): Likewise.
(main): Call lrint/lround functions instead of rinttol/roundtol.
* math/math.h: Change prototypes for rinttol/roundtol.
* math/mathcalls.h: Rearrange prototypes according to ISO C9X draft.
* sysdeps/generic/mathbits.h: Define FP_ILOGB0 and FP_ILOGBNAN.
* sysdeps/i386/mathbits.h: Likewise.
* sysdeps/libm-i387/e_scalb.S: Handle special cases correctly.
* sysdeps/libm-i387/e_scalbf.S: Likewise.
* sysdeps/libm-i387/e_scalbl.S: Likewise.
* sysdeps/libm-i387/s_asinh.S: Handle -inf correctly.
* sysdeps/libm-i387/s_asinhf.S: Likewise.
* sysdeps/libm-i387/s_asinhl.S: Likewise.
* sysdeps/libm-i387/s_ilogb.S: Optimize.
* sysdeps/libm-i387/s_ilogbf.S: Likewise.
* sysdeps/libm-i387/s_ilogbl.S: Likewise.
* sysdeps/libm-i387/s_rinttol.S: Rename to...
* sysdeps/libm-i387/s_lrint.S: ...this.
* sysdeps/libm-i387/s_rinttoll.S: Rename to...
* sysdeps/libm-i387/s_llrint.S: ...this.
* sysdeps/libm-i387/s_remquo.S: Correctly set sign of remainder.
* sysdeps/libm-i387/s_remquof.S: Likewise.
* sysdeps/libm-i387/s_remquol.S: Likewise.
* sysdeps/libm-i387/e_gamma_r.c: New file. Implementation of gamma
function according to ISO C.
* sysdeps/libm-i387/e_gammaf_r.c: New file.
* sysdeps/libm-i387/e_gammal_r.c: New file.
* sysdeps/libm-i387/e_lgamma_r.c: Don't let optimize compile the
generation of exceptions away.
* sysdeps/libm-i387/e_lgammaf_r.c: Likewise.
* sysdeps/libm-i387/k_standard.c: Correct return value for infinity
points of gamma function when not SVID mode.
* sysdeps/libm-i387/s_rinttoll.c: Renamed to...
* sysdeps/libm-i387/s_llrint.c: ...this.
* sysdeps/libm-i387/s_rinttol.c: Renamed to...
* sysdeps/libm-i387/s_lrint.c: ...this.
* sysdeps/libm-i387/s_roundtoll.c: Renamed to...
* sysdeps/libm-i387/s_llround.c: ...this.
* sysdeps/libm-i387/s_roundtol.c: Renamed to...
* sysdeps/libm-i387/s_lround.c: ..this.
* sysdeps/libm-i387/s_scalbn.c: Change second parameter according to
ISO C.
* sysdeps/libm-i387/s_scalbnf.c: Likewise.
* sysdeps/libm-i387/s_scalbnl.c: Likewise.
* sysdeps/libm-i387/w_gamma.c: Call __ieee754_gamma_r if library
mode is not _SVID_.
* sysdeps/libm-i387/w_gammaf.c: Likewise.
* sysdeps/libm-i387/w_gammal.c: Likewise.
* sysdeps/m68k/fpu/__math.h: Rename __rinttol to __lrint and
rinttol to lrint.
* sysdeps/m68k/fpu/s_rinttol.c: Renamed to...
* sysdeps/m68k/fpu/s_lrint.c: ...this.
* sysdeps/m68k/fpu/s_rinttoll.c: Renamed to...
* sysdeps/m68k/fpu/s_llrint.c: ...this.
* md5-crypt/Makefile: Link md5test program with md5.o.
* stdio-common/temptest.c: Don't use __stdio_gen_tempname which
is not exported by the libc.so.
* stdio-common/vfscanf.c: Correct scanning of strings after last
change.
* sysdeps/unix/sysv/linux/i386/sysdep.S: Use .comm to define errno.
1997-06-19 07:37 H.J. Lu <hjl@gnu.ai.mit.edu>
* time/tzfile.c (__tzfile_read): Store getc () return in int.
1997-06-13 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (argp_version_parser): Include `(PROGRAM ERROR)' in
the no-version error text to indicate that something's fucked.
[!_] (N_): New macro.
(argp_default_options, argp_version_options): Wrap doc strings in N_().
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (parser_parse_opt): Detect and report unhandled
options here.
(parser_parse_arg): Handle ARGP_KEY_ARGS here.
Adjust NEXT pointer back if we fail to parse anything.
(parser_parse_next): Simplify arg code. Leave state NEXT frobbing
to parser_parse_arg.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp.h (ARGP_KEY_ARGS, ARGP_KEY_FINI): New macros.
* argp/argp-parse.c (parser_finalize): Do another pass over the
parsers with ARGP_KEY_FINI.
1997-06-18 Miles Bader <miles@gnu.ai.mit.edu>
* string/Makefile (routines): Add argz-replace.
1997-06-16 00:16 Miles Bader <miles@gnu.ai.mit.edu>
* manual/string.texi (Argz Functions): Document argz_replace.
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* string/argz.h (__argz_replace, argz_replace): New declarations.
* string/argz-replace.c: New file.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* manual/argp.texi (Argp Special Keys): Document ARGP_KEY_ARGS.
1997-06-16 23:08 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makeconfig (libc-map): Remove definition.
* Makerules (libc-map): Define it here, using the full name.
(load-map-file): Remove case for empty $(..).
($(common-objpfx)libc.so): Revert last change.
1997-06-17 22:18 Mark Kettenis <kettenis@phys.uva.nl>
* login/programs/utmpd.c (main): Improve signal handling.
* login/programs/request.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/utmpd.h (setutent_request, updwtmp_request):
Get rid of fixed length file field.
* login/utmp_daemon.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/request.c (do_pututline):
Don't fail if connection->position is -1 on entry.
1997-06-15 16:32 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (updwtmp_file): Use the same method for
appending an entry as in pututline_file.
1997-06-11 18:59 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (getutent_r_file):
Use read lock instead of write lock.
(getutline_r_file, internal_getut_r): Lock utmp file.
(updwtmp_file): Use fcntl to lock file instead of flock.
1997-06-18 00:11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* stdio-common/vfscanf.c (inchar, ungetc): Don't count EOF as
character read in/put back.
* stdio-common/tstscanf.c: Add test case for this.
1997-06-17 22:17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* libc.map: Add more symbols.
1997-06-18 12:01 Ulrich Drepper <drepper@cygnus.com>
* manual/Makefile (install): Make sure `dir' file exists if we use
install-info.
1997-06-17 19:32 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* manual/Makefile (info): Depend on dir-add.info.
1997-06-17 17:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/ldd.bash.in: Fix spacing in message.
1997-06-17 14:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/do-rel.h (elf_dynamic_do_rel): Always use version
information if available.
1997-06-17 11:34 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sunrpc/Makefile ($(rpcsvc:%.x=$(objpfx)rpcsvc/%.h)): Make
command non-empty to force make to recheck modification time.
($(rpcsvc:%.x=$(objpfx)x%.c)): Likewise.
1997-06-17 00:26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/stub/e_acoshl.c: Set errno to ENOSYS.
* sysdeps/stub/e_acosl.c: Likewise.
* sysdeps/stub/e_asinl.c: Likewise.
* sysdeps/stub/e_atan2l.c: Likewise.
* sysdeps/stub/e_expl.c: Likewise.
* sysdeps/stub/e_fmodl.c: Likewise.
* sysdeps/stub/e_j0l.c: Likewise.
* sysdeps/stub/e_j1l.c: Likewise.
* sysdeps/stub/e_jnl.c: Likewise.
* sysdeps/stub/e_lgammal_r.c: Likewise.
* sysdeps/stub/e_log10l.c: Likewise.
* sysdeps/stub/e_logl.c: Likewise.
* sysdeps/stub/e_powl.c: Likewise.
* sysdeps/stub/e_rem_pio2l.c: Likewise.
* sysdeps/stub/e_sqrtl.c: Likewise.
* sysdeps/stub/k_cosl.c: Likewise.
* sysdeps/stub/k_rem_pio2l.c: Likewise.
* sysdeps/stub/k_sinl.c: Likewise.
* sysdeps/stub/k_tanl.c: Likewise.
* sysdeps/stub/s_atanl.c: Likewise.
* sysdeps/stub/s_erfl.c: Likewise.
* sysdeps/stub/s_exp2.c: Likewise.
* sysdeps/stub/s_exp2f.c: Likewise.
* sysdeps/stub/s_exp2l.c: Likewise.
* sysdeps/stub/s_expm1l.c: Likewise.
* sysdeps/stub/s_log1pl.c: Likewise.
* sysdeps/stub/s_log2l.c: Likewise.
1997-06-18 11:46 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/w_gamma.c: If _LIB_VERSION is _SVID_ compute
result as before last change.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
1997-06-16 23:37 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/libm-ieee754/s_remquo.c: Fix off-by-one when computing
quotient.
* sysdeps/libm-ieee754/s_remquof.c: Likewise.
* sysdeps/libm-ieee754/s_remquol.c: Likewise.
* sysdeps/m68k/fpu/s_remquo.c: Remove FIXME and special case for
quotient.
* sysdeps/libm-ieee754/w_gamma.c: Add missing call to exp
function. Don't use global signgam.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
* math/Makefile (libm-calls): Remove w_gamma_r.
* sysdeps/libm-ieee754/w_gamma_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammaf_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammal_r.c: Remove file.
* math/libm-test.c (atanh_test): Declare x only if needed.
(signbit_test): Fix typo.
(gamma_test): Check whether function is implemented. Add
epsilons.
(lgamma_test): Likewise.
(fmod_test): Add epsilons.
(exp2_test): Use right function for existence test.
1997-06-07 09:20 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/powerpc/Dist: Add fenv_const.c.
* sysdeps/unix/sysv/linux/Dist: Add net/if_slip.h.
* sysdeps/unix/sysv/linux/powerpc/Dist: Add init-first.h and
syscall.h.
* sysdeps/unix/sysv/linux/sparc/Dist: Add init-first.h.
* string/Makefile (distribute): Add tst-svc.expect.
* nis/Makefile (distribute): Add nis_intern.h and Banner.
* elf/Makefile (distribute): Add dl-hash.h.
* Rules (subdir_echo-distinfo): Add headers from $(distribute).
* login/Makefile (others): Add utmpdump.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
net/if_slip.h.
* manual/Makefile (dir-add.texi): Also look in indirectly included
files.
1997-06-16 23:15 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/configure.in: Remove commands to
generate stdio_lim.h.
* sysdeps/unix/sysv/linux/mk-stdiolim.c: Remove.
* sysdeps/unix/sysv/linux/Makefile: Add rules to generate
stdio_lim.h here.
(common-generated): Add generated files.
(inhibit-stdio_lim): Define.
* sysdeps/posix/Makefile [$(inhibit-stdio_lim)=yes]: Disable rules
to generate stdio_lim.h.
* sysdeps/unix/sysv/linux/Makefile: Suppress inclusion of
dependecy files if no_deps is set.
($(objpfx)syscall-%.d): Add header file as target to dependency
generation.
1997-06-14 19:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/arm/Dist: New file.
1997-06-14 17:59 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* extra-lib.mk (others): Depend on versioned shared library, not
the unversioned one.
* Makerules (build-shlib): Don't make the version link here.
($(common-objpfx)libc.so$(libc.so-version)): New rule for libc
version link.
1997-06-16 03:07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/k_standard.c: Undo change of Tue Aug 6
01:13:56 1996.
* argp/argp-help.c (argp_args_usage): Supply correct argp to
filter_doc.
* argp/argp-help.c (hol_add_cluster): Initialize CL->depth.
* argp/argp-help.c (_help): Supply STATE to argp_args_usage.
* argp/argp.h (ARGP_KEY_HELP_ARGS_DOC): New macro.
* argp/argp-fmtstream.c: Add casts to prevent warnings.
* argp/argp.h (OPTION_NO_USAGE): New macro.
* argp/argp-help.c (usage_long_opt, usage_argful_short_opt,
* argp/argp-fmtstream.c (__argp_fmtstream_update): Account for case
* argp/argp-help.c <stddef.h>: New include.
* argp/argp.h (argp_state_help, __argp_state_help, argp_usage,
* argp/argp.h (argp_program_bug_address): Make const.
* argp/argp-parse.c (argp_default_parser): Set STATE->name for OPT_PROGNAME.
* argp/argp-help.c (__argp_error, __argp_failure, __argp_state_help):
* argp/argp-parse.c (parser_init): Set PARSER->state.flags.
1997-06-19 21:11:22 +02:00
|
|
|
case ARGP_KEY_ARG:
|
|
|
|
if (@var{state}->arg_num == 0)
|
|
|
|
/* First argument */
|
|
|
|
first_arg = @var{arg};
|
|
|
|
else
|
1998-03-19 15:32:08 +01:00
|
|
|
/* Let the next case parse it. */
|
|
|
|
return ARGP_KEY_UNKNOWN;
|
Update.
1997-06-19 19:38 Ulrich Drepper <drepper@cygnus.com>
* features.h: Define __STDC_IEC_559__ and _STDC_IEC_559_COMPLEX__.
* elf/dl-minimal.c (__dcgettext): Remove assertion.
* inet/rcmd.c: Correct a few typos. Reported by Eric Troan.
* manual/Makefile (distribute): Add dir.
* manual/dir: New file.
* math/Makefile (libm-support): Rename s_rinttol, s_rinttoll,
s_roundtol, and s_roundtoll to s_lrint, s_llrint, s_lround,
and s_llround respectively.
(libm-calls): Add e_gamma_r.
* math/libm-test.c (check_int_exc): New function.
(signbit_test): Remove test for sign of NaN.
(gamma_test): Clear exception after test of existence.
Correct tests and and epsilons.
(lgamma_test): Likewise.
(ilogb_test): Correct all tests.
(scalb_test): Rewrite.
(rinttol_test): Rename to lrint_test and correct tests.
(rinttoll_test): Likewise.
(roundtol_test): Likewise.
(roundtoll_test): Likewise.
(main): Call lrint/lround functions instead of rinttol/roundtol.
* math/math.h: Change prototypes for rinttol/roundtol.
* math/mathcalls.h: Rearrange prototypes according to ISO C9X draft.
* sysdeps/generic/mathbits.h: Define FP_ILOGB0 and FP_ILOGBNAN.
* sysdeps/i386/mathbits.h: Likewise.
* sysdeps/libm-i387/e_scalb.S: Handle special cases correctly.
* sysdeps/libm-i387/e_scalbf.S: Likewise.
* sysdeps/libm-i387/e_scalbl.S: Likewise.
* sysdeps/libm-i387/s_asinh.S: Handle -inf correctly.
* sysdeps/libm-i387/s_asinhf.S: Likewise.
* sysdeps/libm-i387/s_asinhl.S: Likewise.
* sysdeps/libm-i387/s_ilogb.S: Optimize.
* sysdeps/libm-i387/s_ilogbf.S: Likewise.
* sysdeps/libm-i387/s_ilogbl.S: Likewise.
* sysdeps/libm-i387/s_rinttol.S: Rename to...
* sysdeps/libm-i387/s_lrint.S: ...this.
* sysdeps/libm-i387/s_rinttoll.S: Rename to...
* sysdeps/libm-i387/s_llrint.S: ...this.
* sysdeps/libm-i387/s_remquo.S: Correctly set sign of remainder.
* sysdeps/libm-i387/s_remquof.S: Likewise.
* sysdeps/libm-i387/s_remquol.S: Likewise.
* sysdeps/libm-i387/e_gamma_r.c: New file. Implementation of gamma
function according to ISO C.
* sysdeps/libm-i387/e_gammaf_r.c: New file.
* sysdeps/libm-i387/e_gammal_r.c: New file.
* sysdeps/libm-i387/e_lgamma_r.c: Don't let optimize compile the
generation of exceptions away.
* sysdeps/libm-i387/e_lgammaf_r.c: Likewise.
* sysdeps/libm-i387/k_standard.c: Correct return value for infinity
points of gamma function when not SVID mode.
* sysdeps/libm-i387/s_rinttoll.c: Renamed to...
* sysdeps/libm-i387/s_llrint.c: ...this.
* sysdeps/libm-i387/s_rinttol.c: Renamed to...
* sysdeps/libm-i387/s_lrint.c: ...this.
* sysdeps/libm-i387/s_roundtoll.c: Renamed to...
* sysdeps/libm-i387/s_llround.c: ...this.
* sysdeps/libm-i387/s_roundtol.c: Renamed to...
* sysdeps/libm-i387/s_lround.c: ..this.
* sysdeps/libm-i387/s_scalbn.c: Change second parameter according to
ISO C.
* sysdeps/libm-i387/s_scalbnf.c: Likewise.
* sysdeps/libm-i387/s_scalbnl.c: Likewise.
* sysdeps/libm-i387/w_gamma.c: Call __ieee754_gamma_r if library
mode is not _SVID_.
* sysdeps/libm-i387/w_gammaf.c: Likewise.
* sysdeps/libm-i387/w_gammal.c: Likewise.
* sysdeps/m68k/fpu/__math.h: Rename __rinttol to __lrint and
rinttol to lrint.
* sysdeps/m68k/fpu/s_rinttol.c: Renamed to...
* sysdeps/m68k/fpu/s_lrint.c: ...this.
* sysdeps/m68k/fpu/s_rinttoll.c: Renamed to...
* sysdeps/m68k/fpu/s_llrint.c: ...this.
* md5-crypt/Makefile: Link md5test program with md5.o.
* stdio-common/temptest.c: Don't use __stdio_gen_tempname which
is not exported by the libc.so.
* stdio-common/vfscanf.c: Correct scanning of strings after last
change.
* sysdeps/unix/sysv/linux/i386/sysdep.S: Use .comm to define errno.
1997-06-19 07:37 H.J. Lu <hjl@gnu.ai.mit.edu>
* time/tzfile.c (__tzfile_read): Store getc () return in int.
1997-06-13 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (argp_version_parser): Include `(PROGRAM ERROR)' in
the no-version error text to indicate that something's fucked.
[!_] (N_): New macro.
(argp_default_options, argp_version_options): Wrap doc strings in N_().
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp-parse.c (parser_parse_opt): Detect and report unhandled
options here.
(parser_parse_arg): Handle ARGP_KEY_ARGS here.
Adjust NEXT pointer back if we fail to parse anything.
(parser_parse_next): Simplify arg code. Leave state NEXT frobbing
to parser_parse_arg.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* argp/argp.h (ARGP_KEY_ARGS, ARGP_KEY_FINI): New macros.
* argp/argp-parse.c (parser_finalize): Do another pass over the
parsers with ARGP_KEY_FINI.
1997-06-18 Miles Bader <miles@gnu.ai.mit.edu>
* string/Makefile (routines): Add argz-replace.
1997-06-16 00:16 Miles Bader <miles@gnu.ai.mit.edu>
* manual/string.texi (Argz Functions): Document argz_replace.
1997-06-12 Miles Bader <miles@gnu.ai.mit.edu>
* string/argz.h (__argz_replace, argz_replace): New declarations.
* string/argz-replace.c: New file.
1997-06-11 Miles Bader <miles@gnu.ai.mit.edu>
* manual/argp.texi (Argp Special Keys): Document ARGP_KEY_ARGS.
1997-06-16 23:08 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makeconfig (libc-map): Remove definition.
* Makerules (libc-map): Define it here, using the full name.
(load-map-file): Remove case for empty $(..).
($(common-objpfx)libc.so): Revert last change.
1997-06-17 22:18 Mark Kettenis <kettenis@phys.uva.nl>
* login/programs/utmpd.c (main): Improve signal handling.
* login/programs/request.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/utmpd.h (setutent_request, updwtmp_request):
Get rid of fixed length file field.
* login/utmp_daemon.c (do_setutent, do_updwtmp):
Allow arbitrary length filenames.
* login/programs/request.c (do_pututline):
Don't fail if connection->position is -1 on entry.
1997-06-15 16:32 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (updwtmp_file): Use the same method for
appending an entry as in pututline_file.
1997-06-11 18:59 Mark Kettenis <kettenis@phys.uva.nl>
* login/utmp_file.c (getutent_r_file):
Use read lock instead of write lock.
(getutline_r_file, internal_getut_r): Lock utmp file.
(updwtmp_file): Use fcntl to lock file instead of flock.
1997-06-18 00:11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* stdio-common/vfscanf.c (inchar, ungetc): Don't count EOF as
character read in/put back.
* stdio-common/tstscanf.c: Add test case for this.
1997-06-17 22:17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* libc.map: Add more symbols.
1997-06-18 12:01 Ulrich Drepper <drepper@cygnus.com>
* manual/Makefile (install): Make sure `dir' file exists if we use
install-info.
1997-06-17 19:32 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* manual/Makefile (info): Depend on dir-add.info.
1997-06-17 17:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/ldd.bash.in: Fix spacing in message.
1997-06-17 14:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/do-rel.h (elf_dynamic_do_rel): Always use version
information if available.
1997-06-17 11:34 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sunrpc/Makefile ($(rpcsvc:%.x=$(objpfx)rpcsvc/%.h)): Make
command non-empty to force make to recheck modification time.
($(rpcsvc:%.x=$(objpfx)x%.c)): Likewise.
1997-06-17 00:26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/stub/e_acoshl.c: Set errno to ENOSYS.
* sysdeps/stub/e_acosl.c: Likewise.
* sysdeps/stub/e_asinl.c: Likewise.
* sysdeps/stub/e_atan2l.c: Likewise.
* sysdeps/stub/e_expl.c: Likewise.
* sysdeps/stub/e_fmodl.c: Likewise.
* sysdeps/stub/e_j0l.c: Likewise.
* sysdeps/stub/e_j1l.c: Likewise.
* sysdeps/stub/e_jnl.c: Likewise.
* sysdeps/stub/e_lgammal_r.c: Likewise.
* sysdeps/stub/e_log10l.c: Likewise.
* sysdeps/stub/e_logl.c: Likewise.
* sysdeps/stub/e_powl.c: Likewise.
* sysdeps/stub/e_rem_pio2l.c: Likewise.
* sysdeps/stub/e_sqrtl.c: Likewise.
* sysdeps/stub/k_cosl.c: Likewise.
* sysdeps/stub/k_rem_pio2l.c: Likewise.
* sysdeps/stub/k_sinl.c: Likewise.
* sysdeps/stub/k_tanl.c: Likewise.
* sysdeps/stub/s_atanl.c: Likewise.
* sysdeps/stub/s_erfl.c: Likewise.
* sysdeps/stub/s_exp2.c: Likewise.
* sysdeps/stub/s_exp2f.c: Likewise.
* sysdeps/stub/s_exp2l.c: Likewise.
* sysdeps/stub/s_expm1l.c: Likewise.
* sysdeps/stub/s_log1pl.c: Likewise.
* sysdeps/stub/s_log2l.c: Likewise.
1997-06-18 11:46 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/w_gamma.c: If _LIB_VERSION is _SVID_ compute
result as before last change.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
1997-06-16 23:37 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/libm-ieee754/s_remquo.c: Fix off-by-one when computing
quotient.
* sysdeps/libm-ieee754/s_remquof.c: Likewise.
* sysdeps/libm-ieee754/s_remquol.c: Likewise.
* sysdeps/m68k/fpu/s_remquo.c: Remove FIXME and special case for
quotient.
* sysdeps/libm-ieee754/w_gamma.c: Add missing call to exp
function. Don't use global signgam.
* sysdeps/libm-ieee754/w_gammaf.c: Likewise.
* sysdeps/libm-ieee754/w_gammal.c: Likewise.
* math/Makefile (libm-calls): Remove w_gamma_r.
* sysdeps/libm-ieee754/w_gamma_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammaf_r.c: Remove file.
* sysdeps/libm-ieee754/w_gammal_r.c: Remove file.
* math/libm-test.c (atanh_test): Declare x only if needed.
(signbit_test): Fix typo.
(gamma_test): Check whether function is implemented. Add
epsilons.
(lgamma_test): Likewise.
(fmod_test): Add epsilons.
(exp2_test): Use right function for existence test.
1997-06-07 09:20 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/powerpc/Dist: Add fenv_const.c.
* sysdeps/unix/sysv/linux/Dist: Add net/if_slip.h.
* sysdeps/unix/sysv/linux/powerpc/Dist: Add init-first.h and
syscall.h.
* sysdeps/unix/sysv/linux/sparc/Dist: Add init-first.h.
* string/Makefile (distribute): Add tst-svc.expect.
* nis/Makefile (distribute): Add nis_intern.h and Banner.
* elf/Makefile (distribute): Add dl-hash.h.
* Rules (subdir_echo-distinfo): Add headers from $(distribute).
* login/Makefile (others): Add utmpdump.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
net/if_slip.h.
* manual/Makefile (dir-add.texi): Also look in indirectly included
files.
1997-06-16 23:15 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/configure.in: Remove commands to
generate stdio_lim.h.
* sysdeps/unix/sysv/linux/mk-stdiolim.c: Remove.
* sysdeps/unix/sysv/linux/Makefile: Add rules to generate
stdio_lim.h here.
(common-generated): Add generated files.
(inhibit-stdio_lim): Define.
* sysdeps/posix/Makefile [$(inhibit-stdio_lim)=yes]: Disable rules
to generate stdio_lim.h.
* sysdeps/unix/sysv/linux/Makefile: Suppress inclusion of
dependecy files if no_deps is set.
($(objpfx)syscall-%.d): Add header file as target to dependency
generation.
1997-06-14 19:19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/arm/Dist: New file.
1997-06-14 17:59 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* extra-lib.mk (others): Depend on versioned shared library, not
the unversioned one.
* Makerules (build-shlib): Don't make the version link here.
($(common-objpfx)libc.so$(libc.so-version)): New rule for libc
version link.
1997-06-16 03:07 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/k_standard.c: Undo change of Tue Aug 6
01:13:56 1996.
* argp/argp-help.c (argp_args_usage): Supply correct argp to
filter_doc.
* argp/argp-help.c (hol_add_cluster): Initialize CL->depth.
* argp/argp-help.c (_help): Supply STATE to argp_args_usage.
* argp/argp.h (ARGP_KEY_HELP_ARGS_DOC): New macro.
* argp/argp-fmtstream.c: Add casts to prevent warnings.
* argp/argp.h (OPTION_NO_USAGE): New macro.
* argp/argp-help.c (usage_long_opt, usage_argful_short_opt,
* argp/argp-fmtstream.c (__argp_fmtstream_update): Account for case
* argp/argp-help.c <stddef.h>: New include.
* argp/argp.h (argp_state_help, __argp_state_help, argp_usage,
* argp/argp.h (argp_program_bug_address): Make const.
* argp/argp-parse.c (argp_default_parser): Set STATE->name for OPT_PROGNAME.
* argp/argp-help.c (__argp_error, __argp_failure, __argp_state_help):
* argp/argp-parse.c (parser_init): Set PARSER->state.flags.
1997-06-19 21:11:22 +02:00
|
|
|
break;
|
|
|
|
case ARGP_KEY_ARGS:
|
|
|
|
remaining_args = @var{state}->argv + @var{state}->next;
|
|
|
|
num_remaining_args = @var{state}->argc - @var{state}->next;
|
|
|
|
break;
|
|
|
|
@end smallexample
|
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_END
|
2001-06-29 03:19:02 +02:00
|
|
|
This indicates that there are no more command line arguments. Parser
|
|
|
|
functions are called in a different order, children first. This allows
|
|
|
|
each parser to clean up its state for the parent.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_NO_ARGS
|
2001-06-29 03:19:02 +02:00
|
|
|
Because it's common to do some special processing if there aren't any
|
|
|
|
non-option args, parser functions are called with this key if they
|
|
|
|
didn't successfully process any non-option arguments. This is called
|
|
|
|
just before @code{ARGP_KEY_END}, where more general validity checks on
|
|
|
|
previously parsed arguments take place.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_INIT
|
2001-06-29 03:19:02 +02:00
|
|
|
This is passed in before any parsing is done. Afterwards, the values of
|
|
|
|
each element of the @code{child_input} field of @var{state}, if any, are
|
1997-06-05 13:28:54 +02:00
|
|
|
copied to each child's state to be the initial value of the @code{input}
|
|
|
|
when @emph{their} parsers are called.
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_SUCCESS
|
2001-06-29 03:19:02 +02:00
|
|
|
Passed in when parsing has successfully been completed, even if
|
|
|
|
arguments remain.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_ERROR
|
2001-06-29 03:19:02 +02:00
|
|
|
Passed in if an error has occurred and parsing is terminated. In this
|
|
|
|
case a call with a key of @code{ARGP_KEY_SUCCESS} is never made.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_FINI
|
2001-06-29 03:19:02 +02:00
|
|
|
The final key ever seen by any parser, even after
|
|
|
|
@code{ARGP_KEY_SUCCESS} and @code{ARGP_KEY_ERROR}. Any resources
|
|
|
|
allocated by @code{ARGP_KEY_INIT} may be freed here. At times, certain
|
|
|
|
resources allocated are to be returned to the caller after a successful
|
|
|
|
parse. In that case, those particular resources can be freed in the
|
|
|
|
@code{ARGP_KEY_ERROR} case.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end vtable
|
|
|
|
|
|
|
|
In all cases, @code{ARGP_KEY_INIT} is the first key seen by parser
|
2001-06-29 03:19:02 +02:00
|
|
|
functions, and @code{ARGP_KEY_FINI} the last, unless an error was
|
|
|
|
returned by the parser for @code{ARGP_KEY_INIT}. Other keys can occur
|
|
|
|
in one the following orders. @var{opt} refers to an arbitrary option
|
|
|
|
key:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @var{opt}@dots{} @code{ARGP_KEY_NO_ARGS} @code{ARGP_KEY_END} @code{ARGP_KEY_SUCCESS}
|
2001-06-29 03:19:02 +02:00
|
|
|
The arguments being parsed did not contain any non-option arguments.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ( @var{opt} | @code{ARGP_KEY_ARG} )@dots{} @code{ARGP_KEY_END} @code{ARGP_KEY_SUCCESS}
|
2001-06-29 03:19:02 +02:00
|
|
|
All non-option arguments were successfully handled by a parser
|
|
|
|
function. There may be multiple parser functions if multiple argp
|
|
|
|
parsers were combined.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ( @var{opt} | @code{ARGP_KEY_ARG} )@dots{} @code{ARGP_KEY_SUCCESS}
|
2001-06-29 03:19:02 +02:00
|
|
|
Some non-option argument went unrecognized.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
This occurs when every parser function returns @code{ARGP_KEY_UNKNOWN}
|
2001-06-29 03:19:02 +02:00
|
|
|
for an argument, in which case parsing stops at that argument if
|
|
|
|
@var{arg_index} is a null pointer. Otherwise an error occurs.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end table
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
In all cases, if a non-null value for @var{arg_index} gets passed to
|
2000-04-18 08:24:03 +02:00
|
|
|
@code{argp_parse}, the index of the first unparsed command-line argument
|
2001-06-29 03:19:02 +02:00
|
|
|
is passed back in that value.
|
2000-04-18 08:24:03 +02:00
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
If an error occurs and is either detected by argp or because a parser
|
|
|
|
function returned an error value, each parser is called with
|
|
|
|
@code{ARGP_KEY_ERROR}. No further calls are made, except the final call
|
|
|
|
with @code{ARGP_KEY_FINI}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@node Argp Helper Functions, , Argp Parsing State, Argp Parser Functions
|
|
|
|
@subsubsection Functions For Use in Argp Parsers
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
Argp provides a number of functions available to the user of argp
|
|
|
|
(@pxref{Argp Parser Functions}), mostly for producing error messages.
|
|
|
|
These take as their first argument the @var{state} argument to the
|
|
|
|
parser function. @xref{Argp Parsing State}.
|
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@cindex usage messages, in argp
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftypefun void argp_usage (const struct argp_state *@var{state})
|
2001-06-29 03:19:02 +02:00
|
|
|
Outputs the standard usage message for the argp parser referred to by
|
1997-06-05 13:28:54 +02:00
|
|
|
@var{state} to @code{@var{state}->err_stream} and terminate the program
|
2001-06-29 03:19:02 +02:00
|
|
|
with @code{exit (argp_err_exit_status)}. @xref{Argp Global Variables}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
@cindex syntax error messages, in argp
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
1998-06-11 16:56:10 +02:00
|
|
|
@deftypefun void argp_error (const struct argp_state *@var{state}, const char *@var{fmt}, @dots{})
|
2001-06-29 03:19:02 +02:00
|
|
|
Prints the printf format string @var{fmt} and following args, preceded
|
|
|
|
by the program name and @samp{:}, and followed by a @w{@samp{Try @dots{}
|
|
|
|
--help}} message, and terminates the program with an exit status of
|
|
|
|
@code{argp_err_exit_status}. @xref{Argp Global Variables}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
@cindex error messages, in argp
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
1998-06-11 16:56:10 +02:00
|
|
|
@deftypefun void argp_failure (const struct argp_state *@var{state}, int @var{status}, int @var{errnum}, const char *@var{fmt}, @dots{})
|
2001-06-29 03:19:02 +02:00
|
|
|
Similar to the standard gnu error-reporting function @code{error}, this
|
|
|
|
prints the program name and @samp{:}, the printf format string
|
|
|
|
@var{fmt}, and the appropriate following args. If it is non-zero, the
|
|
|
|
standard unix error text for @var{errnum} is printed. If @var{status} is
|
|
|
|
non-zero, it terminates the program with that value as its exit status.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
The difference between @code{argp_failure} and @code{argp_error} is that
|
1997-06-05 13:28:54 +02:00
|
|
|
@code{argp_error} is for @emph{parsing errors}, whereas
|
|
|
|
@code{argp_failure} is for other problems that occur during parsing but
|
2001-06-29 03:19:02 +02:00
|
|
|
don't reflect a syntactic problem with the input, such as illegal values
|
|
|
|
for options, bad phase of the moon, etc.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
1998-06-11 16:56:10 +02:00
|
|
|
@deftypefun void argp_state_help (const struct argp_state *@var{state}, FILE *@var{stream}, unsigned @var{flags})
|
2001-06-29 03:19:02 +02:00
|
|
|
Outputs a help message for the argp parser referred to by @var{state},
|
|
|
|
to @var{stream}. The @var{flags} argument determines what sort of help
|
1997-06-05 13:28:54 +02:00
|
|
|
message is produced. @xref{Argp Help Flags}.
|
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
Error output is sent to @code{@var{state}->err_stream}, and the program
|
|
|
|
name printed is @code{@var{state}->name}.
|
|
|
|
|
|
|
|
The output or program termination behavior of these functions may be
|
2001-06-29 03:19:02 +02:00
|
|
|
suppressed if the @code{ARGP_NO_EXIT} or @code{ARGP_NO_ERRS} flags are
|
|
|
|
passed to @code{argp_parse}. @xref{Argp Flags}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
This behavior is useful if an argp parser is exported for use by other
|
|
|
|
programs (e.g., by a library), and may be used in a context where it is
|
2001-06-29 03:19:02 +02:00
|
|
|
not desirable to terminate the program in response to parsing errors. In
|
|
|
|
argp parsers intended for such general use, and for the case where the
|
|
|
|
program @emph{doesn't} terminate, calls to any of these functions should
|
|
|
|
be followed by code that returns the appropriate error code:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
if (@var{bad argument syntax})
|
|
|
|
@{
|
|
|
|
argp_usage (@var{state});
|
|
|
|
return EINVAL;
|
|
|
|
@}
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@noindent
|
2001-06-29 03:19:02 +02:00
|
|
|
If a parser function will @emph{only} be used when @code{ARGP_NO_EXIT}
|
|
|
|
is not set, the return may be omitted.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@node Argp Parsing State, Argp Helper Functions, Argp Special Keys, Argp Parser Functions
|
|
|
|
@subsubsection Argp Parsing State
|
|
|
|
|
|
|
|
The third argument to argp parser functions (@pxref{Argp Parser
|
|
|
|
Functions}) is a pointer to a @code{struct argp_state}, which contains
|
|
|
|
information about the state of the option parsing.
|
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftp {Data Type} {struct argp_state}
|
|
|
|
This structure has the following fields, which may be modified as noted:
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item const struct argp *const root_argp
|
|
|
|
The top level argp parser being parsed. Note that this is often
|
|
|
|
@emph{not} the same @code{struct argp} passed into @code{argp_parse} by
|
2001-06-29 03:19:02 +02:00
|
|
|
the invoking program. @xref{Argp}. It is an internal argp parser that
|
|
|
|
contains options implemented by @code{argp_parse} itself, such as
|
|
|
|
@samp{--help}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int argc
|
|
|
|
@itemx char **argv
|
2001-06-29 03:19:02 +02:00
|
|
|
The argument vector being parsed. This may be modified.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int next
|
2001-06-29 03:19:02 +02:00
|
|
|
The index in @code{argv} of the next argument to be parsed. This may be
|
|
|
|
modified.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
One way to consume all remaining arguments in the input is to set
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{@var{state}->next = @var{state}->argc}, perhaps after recording
|
|
|
|
the value of the @code{next} field to find the consumed arguments. The
|
|
|
|
current option can be re-parsed immediately by decrementing this field,
|
|
|
|
then modifying @code{@var{state}->argv[@var{state}->next]} to reflect
|
|
|
|
the option that should be reexamined.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item unsigned flags
|
2001-06-29 03:19:02 +02:00
|
|
|
The flags supplied to @code{argp_parse}. These may be modified, although
|
|
|
|
some flags may only take effect when @code{argp_parse} is first
|
|
|
|
invoked. @xref{Argp Flags}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item unsigned arg_num
|
|
|
|
While calling a parsing function with the @var{key} argument
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{ARGP_KEY_ARG}, this represents the number of the current arg,
|
|
|
|
starting at 0. It is incremented after each @code{ARGP_KEY_ARG} call
|
|
|
|
returns. At all other times, this is the number of @code{ARGP_KEY_ARG}
|
|
|
|
arguments that have been processed.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int quoted
|
|
|
|
If non-zero, the index in @code{argv} of the first argument following a
|
2001-06-29 03:19:02 +02:00
|
|
|
special @samp{--} argument. This prevents anything that follows from
|
|
|
|
being interpreted as an option. It is only set after argument parsing
|
|
|
|
has proceeded past this point.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item void *input
|
|
|
|
An arbitrary pointer passed in from the caller of @code{argp_parse}, in
|
|
|
|
the @var{input} argument.
|
|
|
|
|
|
|
|
@item void **child_inputs
|
2001-06-29 03:19:02 +02:00
|
|
|
These are values that will be passed to child parsers. This vector will
|
|
|
|
be the same length as the number of children in the current parser. Each
|
|
|
|
child parser will be given the value of
|
|
|
|
@code{@var{state}->child_inputs[@var{i}]} as @emph{its}
|
|
|
|
@code{@var{state}->input} field, where @var{i} is the index of the child
|
|
|
|
in the this parser's @code{children} field. @xref{Argp Children}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item void *hook
|
|
|
|
For the parser function's use. Initialized to 0, but otherwise ignored
|
|
|
|
by argp.
|
|
|
|
|
|
|
|
@item char *name
|
|
|
|
The name used when printing messages. This is initialized to
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{argv[0]}, or @code{program_invocation_name} if @code{argv[0]} is
|
1997-06-05 13:28:54 +02:00
|
|
|
unavailable.
|
|
|
|
|
|
|
|
@item FILE *err_stream
|
|
|
|
@itemx FILE *out_stream
|
2001-06-29 03:19:02 +02:00
|
|
|
The stdio streams used when argp prints. Error messages are printed to
|
|
|
|
@code{err_stream}, all other output, such as @samp{--help} output) to
|
|
|
|
@code{out_stream}. These are initialized to @code{stderr} and
|
|
|
|
@code{stdout} respectively. @xref{Standard Streams}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item void *pstate
|
|
|
|
Private, for use by the argp implementation.
|
|
|
|
@end table
|
|
|
|
@end deftp
|
|
|
|
|
|
|
|
@node Argp Children, Argp Help Filtering, Argp Parser Functions, Argp Parsers
|
|
|
|
@subsection Combining Multiple Argp Parsers
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
The @code{children} field in a @code{struct argp} enables other argp
|
|
|
|
parsers to be combined with the referencing one for the parsing of a
|
|
|
|
single set of arguments. This field should point to a vector of
|
|
|
|
@code{struct argp_child}, which is terminated by an entry having a value
|
|
|
|
of zero in the @code{argp} field.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
Where conflicts between combined parsers arise, as when two specify an
|
|
|
|
option with the same name, the parser conflicts are resolved in favor of
|
|
|
|
the parent argp parser(s), or the earlier of the argp parsers in the
|
|
|
|
list of children.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@deftp {Data Type} {struct argp_child}
|
|
|
|
An entry in the list of subsidiary argp parsers pointed to by the
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{children} field in a @code{struct argp}. The fields are as
|
|
|
|
follows:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item const struct argp *argp
|
2001-06-29 03:19:02 +02:00
|
|
|
The child argp parser, or zero to end of the list.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int flags
|
|
|
|
Flags for this child.
|
|
|
|
|
|
|
|
@item const char *header
|
2001-06-29 03:19:02 +02:00
|
|
|
If non-zero, this is an optional header to be printed within help output
|
|
|
|
before the child options. As a side-effect, a non-zero value forces the
|
|
|
|
child options to be grouped together. To achieve this effect without
|
|
|
|
actually printing a header string, use a value of @code{""}. As with
|
|
|
|
header strings specified in an option entry, the conventional value of
|
|
|
|
the last character is @samp{:}. @xref{Argp Option Vectors}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item int group
|
2001-06-29 03:19:02 +02:00
|
|
|
This is where the child options are grouped relative to the other
|
|
|
|
`consolidated' options in the parent argp parser. The values are the
|
|
|
|
same as the @code{group} field in @code{struct argp_option}. @xref{Argp
|
|
|
|
Option Vectors}. All child-groupings follow parent options at a
|
|
|
|
particular group level. If both this field and @code{header} are zero,
|
|
|
|
then the child's options aren't grouped together, they are merged with
|
|
|
|
parent options at the parent option group level.
|
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
@end table
|
|
|
|
@end deftp
|
|
|
|
|
|
|
|
@node Argp Flags, Argp Help, Argp Parsers, Argp
|
|
|
|
@subsection Flags for @code{argp_parse}
|
|
|
|
|
|
|
|
The default behavior of @code{argp_parse} is designed to be convenient
|
|
|
|
for the most common case of parsing program command line argument. To
|
|
|
|
modify these defaults, the following flags may be or'd together in the
|
|
|
|
@var{flags} argument to @code{argp_parse}:
|
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_PARSE_ARGV0
|
|
|
|
Don't ignore the first element of the @var{argv} argument to
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{argp_parse}. Unless @code{ARGP_NO_ERRS} is set, the first element
|
|
|
|
of the argument vector is skipped for option parsing purposes, as it
|
|
|
|
corresponds to the program name in a command line.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_NO_ERRS
|
|
|
|
Don't print error messages for unknown options to @code{stderr}; unless
|
|
|
|
this flag is set, @code{ARGP_PARSE_ARGV0} is ignored, as @code{argv[0]}
|
|
|
|
is used as the program name in the error messages. This flag implies
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{ARGP_NO_EXIT}. This is based on the assumption that silent exiting
|
|
|
|
upon errors is bad behavior.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_NO_ARGS
|
2001-06-29 03:19:02 +02:00
|
|
|
Don't parse any non-option args. Normally these are parsed by calling
|
|
|
|
the parse functions with a key of @code{ARGP_KEY_ARG}, the actual
|
|
|
|
argument being the value. This flag needn't normally be set, as the
|
|
|
|
default behavior is to stop parsing as soon as an argument fails to be
|
|
|
|
parsed. @xref{Argp Parser Functions}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_IN_ORDER
|
|
|
|
Parse options and arguments in the same order they occur on the command
|
2001-06-29 03:19:02 +02:00
|
|
|
line. Normally they're rearranged so that all options come first.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_NO_HELP
|
|
|
|
Don't provide the standard long option @samp{--help}, which ordinarily
|
2001-06-29 03:19:02 +02:00
|
|
|
causes usage and option help information to be output to @code{stdout}
|
|
|
|
and @code{exit (0)}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_NO_EXIT
|
2001-06-29 03:19:02 +02:00
|
|
|
Don't exit on errors, although they may still result in error messages.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_LONG_ONLY
|
2001-06-29 03:19:02 +02:00
|
|
|
Use the gnu getopt `long-only' rules for parsing arguments. This allows
|
|
|
|
long-options to be recognized with only a single @samp{-}
|
[BZ #2510, BZ #2830, BZ #3137, BZ #3313, BZ #3426, BZ #3465, BZ #3480, BZ #3483, BZ #3493, BZ #3514, BZ #3515, BZ #3664, BZ #3673, BZ #3674]
2007-01-11 Jakub Jelinek <jakub@redhat.com>
* sysdeps/i386/soft-fp/sfp-machine.h: Remove.
* sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
2007-01-10 Ulrich Drepper <drepper@redhat.com>
* io/fts.c: Make sure fts_cur is always valid after return from
fts_read.
Patch by Miloslav Trmac <mitr@redhat.com>.
2006-10-27 Richard Sandiford <richard@codesourcery.com>
* elf/elf.h (R_MIPS_GLOB_DAT): Define.
(R_MIPS_NUM): Bump by 1.
2007-01-03 Jakub Jelinek <jakub@redhat.com>
* posix/execvp.c: Include alloca.h.
(allocate_scripts_argv): Renamed to...
(scripts_argv): ... this. Don't allocate buffer here nor count
arguments.
(execvp): Use alloca if possible.
* posix/Makefile: Add rules to build and run tst-vfork3 test.
* posix/tst-vfork3.c: New test.
* stdlib/Makefile (tst-strtod3-ENV): Define.
2007-01-02 Ulrich Drepper <drepper@redhat.com>
* posix/getconf.c: Update copyright year.
* nss/getent.c: Likewise.
* iconv/iconvconfig.c: Likewise.
* iconv/iconv_prog.c: Likewise.
* elf/ldconfig.c: Likewise.
* catgets/gencat.c: Likewise.
* csu/version.c: Likewise.
* elf/ldd.bash.in: Likewise.
* elf/sprof.c (print_version): Likewise.
* locale/programs/locale.c: Likewise.
* locale/programs/localedef.c: Likewise.
* nscd/nscd.c (print_version): Likewise.
* debug/xtrace.sh: Likewise.
* malloc/memusage.sh: Likewise.
* malloc/mtrace.pl: Likewise.
* debug/catchsegv.sh: Likewise.
2006-12-24 Ulrich Drepper <drepper@redhat.com>
* malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
attempts.
2006-12-23 Ulrich Drepper <drepper@redhat.com>
* posix/wordexp.c: Remove some unnecessary tests.
2006-12-20 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
* sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
* nss/getXXbyYY_r.c: Include atomic.h.
(INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
add atomic_write_barrier () in between.
2006-11-28 Jakub Jelinek <jakub@redhat.com>
* elf/dl-support.c: Include dl-procinfo.h.
* sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
Define.
(_dl_string_platform): Use PPC_PLATFORM_* macros instead of
hardcoded constants.
* sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
PPC_PLATFORM_* macros for array designators.
2006-11-11 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
names to the beginning.
(_dl_powerpc_platforms): Add "power6x".
* sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
(HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
(_DL_PLATFORMS_COUNT): Increase.
(_dl_string_platform): Handle power6x case.
* sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
PPC_FEATURE_POWER6_EXT): Define.
(PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
[-2^31 .. 2^31) range.
* sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
* sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
Handle relatime mount option.
2006-12-13 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
kernel-features.h.
2006-12-11 Ulrich Drepper <drepper@redhat.com>
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
separators also if no non-zero digits found.
* stdlib/Makefile (tests): Add tst-strtod3.
[BZ #3664]
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
empty parsed strings.
* stdlib/Makefile (tests): Add tst-strtod2.
* stdlib/tst-strtod2.c: New file.
[BZ #3673]
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
computation.
* stdlib/Makefile (tests): Add tst-atof2.
* stdlib/tst-atof2.c: New file.
[BZ #3674]
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
correctly if removing trailing zero of hex-float.
* stdlib/Makefile (tests): Add tst-atof1.
* stdlib/tst-atof1.c: New file.
* misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
Start searching for next comma at p rather than rest.
* misc/Makefile (tests): Add tst-mntent2.
* misc/tst-mntent2.c: New test.
2006-12-08 Ulrich Drepper <drepper@redhat.com>
* malloc/memusage.c: Handle realloc with new size of zero and
non-NULL pointer correctly.
(me): Really write first record twice.
(struct entry): Make format bi-arch safe.
(dest): Write out more realloc statistics.
* malloc/memusagestat.c (struct entry): Make format bi-arch safe.
2006-12-05 Jakub Jelinek <jakub@redhat.com>
* nis/nis_subr.c (nis_getnames): Revert last change.
2006-12-03 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
2006-11-30 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/i386/i686/memcmp.S: Use jump table as the base of
jump table entries.
2006-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
* sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
`clone' function to ensure proper unwinding stop of gdb.
* sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
2006-12-01 Ulrich Drepper <drepper@redhat.com>
* nscd/nscd.init: Remove obsolete and commented-out -S option
handling.
2006-11-23 Jakub Jelinek <jakub@redhat.com>
[BZ #3514]
* manual/string.texi (strncmp): Fix pastos from wcscmp description.
[BZ #3515]
* manual/string.texi (strtok): Remove duplicate paragraph.
2006-12-01 Jan Kratochvil <jan.kratochvil@redhat.com>
* sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
libgcc not supporting `rflags' unwinding (register # >= 17).
2006-11-30 Jakub Jelinek <jakub@redhat.com>
* sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
succeeded.
2006-11-29 Daniel Jacobowitz <dan@codesourcery.com>
Jakub Jelinek <jakub@redhat.com>
Jan Kratochvil <jan.kratochvil@redhat.com>
* sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
unwind information.
* sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
'restore_rt' even in the 'signal' directory.
* sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
malloc crashed. Don't allocate memory unnecessarily in each
loop.
2006-10-21 Jakub Jelinek <jakub@redhat.com>
* resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
2006-11-20 Ulrich Drepper <drepper@redhat.com>
* resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
2006-11-18 Bruno Haible <bruno@clisp.org>
* sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
__sysconf only after having tried to call getgroups32.
2006-11-19 Ulrich Drepper <drepper@redhat.com>
* nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
addresses for IPv4 queries if they can be mapped.
2006-11-16 Jakub Jelinek <jakub@redhat.com>
* sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
* sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
(signmask): Add .size directive.
(othermask): Add .type directive.
2006-11-14 Ulrich Drepper <drepper@redhat.com>
* po/nl.po: Update from translation team.
* timezone/zdump.c: Redo fix for BZ #3137.
2006-11-14 Jakub Jelinek <jakub@redhat.com>
* nss/nss_files/files-alias.c (get_next_alias): Set line back
to first_unused after parsing :include: file.
* timezone/africa: Update from tzdata2006o.
* timezone/antarctica: Likewise.
* timezone/asia: Likewise.
* timezone/australasia: Likewise.
* timezone/backward: Likewise.
* timezone/europe: Likewise.
* timezone/iso3166.tab: Likewise.
* timezone/northamerica: Likewise.
* timezone/southamerica: Likewise.
* timezone/zone.tab: Likewise.
* time/tzfile.c (__tzfile_read): Extend to handle new file format
on machines with 64-bit time_t.
* timezone/checktab.awk: Update from tzcode2006o.
* timezone/ialloc.c: Likewise.
* timezone/private.h: Likewise.
* timezone/scheck.c: Likewise.
* timezone/tzfile.h: Likewise.
* timezone/tzselect.ksh: Likewise.
* timezone/zdump.c: Likewise.
* timezone/zic.c: Likewise.
[BZ #3483]
* elf/ldconfig.c (main): Call setlocale and textdomain.
Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
[BZ #3480]
* manual/argp.texi: Fix typos.
* manual/charset.texi: Likewise.
* manual/errno.texi: Likewise.
* manual/filesys.texi: Likewise.
* manual/lang.texi: Likewise.
* manual/maint.texi: Likewise.
* manual/memory.texi: Likewise.
* manual/message.texi: Likewise.
* manual/resource.texi: Likewise.
* manual/search.texi: Likewise.
* manual/signal.texi: Likewise.
* manual/startup.texi: Likewise.
* manual/stdio.texi: Likewise.
* manual/sysinfo.texi: Likewise.
* manual/syslog.texi: Likewise.
* manual/time.texi: Likewise.
Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
[BZ #3465]
* sunrpc/clnt_raw.c: Minimal message improvements.
* sunrpc/pm_getmaps.c: Likewise.
* nis/nss_nisplus/nisplus-publickey.c: Likewise.
* nis/nis_print_group_entry.c: Likewise.
* locale/programs/repertoire.c: Likewise.
* locale/programs/charmap.c: Likewise.
* malloc/memusage.sh: Likewise.
* elf/dl-deps.c: Likewise.
* locale/programs/ld-collate.c: Likewise.
* libio/vswprintf.c: Likewise.
* malloc/memusagestat.c: Likewise.
* sunrpc/auth_unix.c: Likewise.
* sunrpc/rpc_main.c: Likewise.
* nscd/cache.c: Likewise.
* locale/programs/repertoire.c: Unify output messages.
* locale/programs/charmap.c: Likewise.
* locale/programs/ld-ctype.c: Likewise.
* locale/programs/ld-monetary.c: Likewise.
* locale/programs/ld-numeric.c: Likewise.
* locale/programs/ld-time.c: Likewise.
* elf/ldconfig.c: Likewise.
* nscd/selinux.c: Likewise.
* elf/cache.c: Likewise.
Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
2006-11-10 Jakub Jelinek <jakub@redhat.com>
* string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
if N is one bigger than return value.
* string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
and l1 last arguments, if buf is defined, verify the return value
equals to strlen (buf) and verify no byte beyond passed length
is modified.
2006-11-10 Ulrich Drepper <drepper@redhat.com>
* po/sv.po: Update from translation team.
* sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
Use __new_sys_siglist instead of _sys_siglist_internal as
second macro argument.
(_old_sys_siglist): Use declare_symbol_alias macro instead of
strong_alias.
2006-11-09 Ulrich Drepper <drepper@redhat.com>
[BZ #3493]
* posix/unistd.h (sysconf): Remove const attribute.
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
temporary or deprecated addresses.
Patch by Sridhar Samudrala <sri@us.ibm.com>.
* string/Makefile (tests): Add tst-strxfrm2.
* string/tst-strxfrm2.c: New file.
2006-10-09 Jakub Jelinek <jakub@redhat.com>
* elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
rather than r->r_brk.
* string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
optimization even if needed > n.
2006-11-07 Jakub Jelinek <jakub@redhat.com>
* include/libc-symbols.h (declare_symbol): Rename to...
(declare_symbol_alias): ... this. Add ORIGINAL argument, imply
strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
.size directive.
* sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
changes.
* sysdeps/gnu/siglist.c: Likewise.
2006-11-03 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/powerpc/fpu/bits/mathinline.h
[__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
* sysdeps/powerpc/fpu/math_private.h: ...here. New file.
2006-11-05 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
Update handling of cache descriptor 0x49 for new models.
* sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
Likewise.
2006-11-02 Ulrich Drepper <drepper@redhat.com>
* configure.in: Work around ld --help change and avoid -z relro
test completely if the architecture doesn't care about security.
2006-11-01 Ulrich Drepper <drepper@redhat.com>
* po/sv.po: Update from translation team.
2006-10-31 Ulrich Drepper <drepper@redhat.com>
* stdlib/atexit.c (atexit): Don't mark as hidden when used to
generate compatibility version.
2006-10-29 Ulrich Drepper <drepper@redhat.com>
* configure.in: Relax -z relro requirement a bit.
* po/sv.po: Update from translation team.
2006-10-29 Jakub Jelinek <jakub@redhat.com>
* elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
* elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
* elf/dl-close.c (_dl_close_worker): Likewise.
* elf/dl-open.c (_dl_open_worker): Likewise.
* sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
* configure.in: Require assembler support for visibility, compiler
support for visibility and aliases, linker support for various -z
options.
* Makeconfig: Remove conditional code which now is unnecessary.
* config.h.in: Likewise.
* config.make.in: Likewise.
* dlfcn/Makefile: Likewise.
* elf/Makefile: Likewise.
* elf/dl-load.c: Likewise.
* elf/rtld.c: Likewise.
* include/libc-symbols.h: Likewise.
* include/stdio.h: Likewise.
* io/Makefile: Likewise.
* io/fstat.c: Likewise.
* io/fstat64.c: Likewise.
* io/fstatat.c: Likewise.
* io/fstatat64.c: Likewise.
* io/lstat.c: Likewise.
* io/lstat64.c: Likewise.
* io/mknod.c: Likewise.
* io/mknodat.c: Likewise.
* io/stat.c: Likewise.
* io/stat64.c: Likewise.
* libio/stdio.c: Likewise.
* nscd/Makefile: Likewise.
* stdlib/Makefile: Likewise.
* stdlib/atexit.c: Likewise.
* sysdeps/generic/ldsodefs.h: Likewise.
* sysdeps/i386/dl-machine.h: Likewise.
* sysdeps/i386/sysdep.h: Likewise.
* sysdeps/i386/i686/memcmp.S: Likewise.
* sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
* sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
* Makerules: USE_TLS support is now default.
* tls.make.c: Likewise.
* csu/Versions: Likewise.
* csu/libc-start.c: Likewise.
* csu/libc-tls.c: Likewise.
* csu/version.c: Likewise.
* dlfcn/dlinfo.c: Likewise.
* elf/dl-addr.c: Likewise.
* elf/dl-cache.c: Likewise.
* elf/dl-close.c: Likewise.
* elf/dl-iteratephdr.c: Likewise.
* elf/dl-load.c: Likewise.
* elf/dl-lookup.c: Likewise.
* elf/dl-object.c: Likewise.
* elf/dl-open.c: Likewise.
* elf/dl-reloc.c: Likewise.
* elf/dl-support.c: Likewise.
* elf/dl-sym.c: Likewise.
* elf/dl-sysdep.c: Likewise.
* elf/dl-tls.c: Likewise.
* elf/ldconfig.c: Likewise.
* elf/rtld.c: Likewise.
* elf/tst-tls-dlinfo.c: Likewise.
* elf/tst-tls1.c: Likewise.
* elf/tst-tls10.h: Likewise.
* elf/tst-tls14.c: Likewise.
* elf/tst-tls2.c: Likewise.
* elf/tst-tls3.c: Likewise.
* elf/tst-tls4.c: Likewise.
* elf/tst-tls5.c: Likewise.
* elf/tst-tls6.c: Likewise.
* elf/tst-tls7.c: Likewise.
* elf/tst-tls8.c: Likewise.
* elf/tst-tls9.c: Likewise.
* elf/tst-tlsmod1.c: Likewise.
* elf/tst-tlsmod13.c: Likewise.
* elf/tst-tlsmod13a.c: Likewise.
* elf/tst-tlsmod14a.c: Likewise.
* elf/tst-tlsmod2.c: Likewise.
* elf/tst-tlsmod3.c: Likewise.
* elf/tst-tlsmod4.c: Likewise.
* elf/tst-tlsmod5.c: Likewise.
* elf/tst-tlsmod6.c: Likewise.
* include/errno.h: Likewise.
* include/link.h: Likewise.
* include/tls.h: Likewise.
* locale/global-locale.c: Likewise.
* locale/localeinfo.h: Likewise.
* malloc/arena.c: Likewise.
* malloc/hooks.c: Likewise.
* malloc/malloc.c: Likewise.
* resolv/Versions: Likewise.
* sysdeps/alpha/dl-machine.h: Likewise.
* sysdeps/alpha/libc-tls.c: Likewise.
* sysdeps/generic/ldsodefs.h: Likewise.
* sysdeps/generic/tls.h: Likewise.
* sysdeps/i386/dl-machine.h: Likewise.
* sysdeps/ia64/dl-machine.h: Likewise.
* sysdeps/ia64/libc-tls.c: Likewise.
* sysdeps/mach/hurd/fork.c: Likewise.
* sysdeps/mach/hurd/i386/tls.h: Likewise.
* sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
* sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
* sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
* sysdeps/s390/libc-tls.c: Likewise.
* sysdeps/s390/s390-32/dl-machine.h: Likewise.
* sysdeps/s390/s390-64/dl-machine.h: Likewise.
* sysdeps/sh/dl-machine.h: Likewise.
* sysdeps/sparc/sparc32/dl-machine.h: Likewise.
* sysdeps/sparc/sparc64/dl-machine.h: Likewise.
* sysdeps/x86_64/dl-machine.h: Likewise.
[BZ #3426]
* stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
reality.
2006-10-27 Jakub Jelinek <jakub@redhat.com>
* elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
argument.
(_dl_lookup_symbol_x): Adjust caller.
* sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
_ns_global_scope.
* elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
* elf/dl-libc.c: Revert l_scope name changes.
* elf/dl-load.c: Likewise.
* elf/dl-object.c: Likewise.
* elf/rtld.c: Likewise.
* elf/dl-close.c (_dl_close): Likewise.
* elf/dl-open.c (dl_open_worker): Likewise. If not SINGLE_THREAD_P,
always use __rtld_mrlock_{change,done}. Always free old scope list
here if not l_scope_mem.
* elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
change. Never free scope list here. Just __rtld_mrlock_lock before
the lookup and __rtld_mrlock_unlock it after the lookup.
* elf/dl-sym.c: Likewise.
* include/link.h (struct r_scoperec): Remove.
(struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
with l_scope_mem and l_scoperec_lock with l_scope_lock.
2006-10-25 Ulrich Drepper <drepper@redhat.com>
* sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
2006-10-18 Ulrich Drepper <drepper@redhat.com>
* configure.in: Disable building profile libraries by default.
2006-10-18 Ulrich Drepper <drepper@redhat.com>
* elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
_dl_lookup_symbol_x code.
2006-10-17 Jakub Jelinek <jakub@redhat.com>
* elf/dl-runtime.c: Include sysdep-cancel.h.
(_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
scoperec->nusers only if !SINGLE_THREAD_P. Use atomic_*
instead of catomic_* macros.
* elf/dl-sym.c: Include sysdep-cancel.h.
(do_sym): Use __rtld_mrlock_* and scoperec->nusers only
if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
* elf/dl-close.c: Include sysdep-cancel.h.
(_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
* elf/dl-open.c: Include sysdep-cancel.h.
(dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
2006-10-17 Jakub Jelinek <jakub@redhat.com>
[BZ #3313]
* malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
fastbin rather than end of fastbin array.
2006-10-18 Ulrich Drepper <drepper@redhat.com>
* sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
body macro.
* sysdeps/x86_64/bits/atomic.h
(__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
(catomic_decrement): Use correct body macro.
2006-10-17 Jakub Jelinek <jakub@redhat.com>
* include/atomic.h: Add a unique prefix to all local variables
in macros.
* csu/tst-atomic.c (do_test): Test also catomic_* macros.
2006-10-14 Ulrich Drepper <drepper@redhat.com>
* resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
[BZ #3313]
* malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
determine highest fast bin to consolidate, always look into all of
them.
(do_check_malloc_state): Only require for empty bins for large
sizes in main arena.
* libio/stdio.h: Add more __wur attributes.
2006-11-12 Andreas Jaeger <aj@suse.de>
[BZ #2510]
* manual/search.texi (Hash Search Function): Clarify.
(Array Search Function): Clarify.
2006-11-12 Joseph Myers <joseph@codesourcery.com>
[BZ #2830]
* math/atest-exp.c (main): Cast hex value to mp_limb_t before
shifting.
* math/atest-exp2.c (read_mpn_hex): Likewise.
* math/atest-sincos.c (main): Likewise.
* sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
* sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
* sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
version GLIBC_2.6.
* Versions.def: Add GLIBC_2.6 for libc.
* sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
2006-10-11 Jakub Jelinek <jakub@redhat.com>
* malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
* nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
* nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
* sysdeps/generic/unsecvars.h: Add NIS_PATH.
2006-10-11 Ulrich Drepper <drepper@redhat.com>
* include/atomic.c: Define catomic_* operations.
* sysdeps/x86_64/bits/atomic.h: Likewise. Fix a few minor problems.
* stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
* malloc/memusage.c: Likewise.
* gmon/mcount.c: Likewise.
* elf/dl-close.c: Likewise.
* elf/dl-open.c: Likewise.
* elf/dl-profile.c: Likewise.
* elf/dl-sym.c: Likewise.
* elf/dl-runtime.c: Likewise.
* elf/dl-fptr.c: Likewise.
* resolv/res_libc.c: Likewise.
2006-10-10 Roland McGrath <roland@frob.com>
* sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
* sysdeps/mach/hurd/futimes.c: Likewise.
* sysdeps/mach/hurd/lutimes.c: Likewise.
2006-10-09 Ulrich Drepper <drepper@redhat.com>
Jakub Jelinek <jakub@redhat.com>
Implement reference counting of scope records.
* elf/dl-close.c (_dl_close): Remove all scopes from removed objects
from the list in objects which remain. Always allocate new scope
record.
* elf/dl-open.c (dl_open_worker): When growing array for scopes,
don't resize, allocate a new one.
* elf/dl-runtime.c: Update reference counters before using a scope
array.
* elf/dl-sym.c: Likewise.
* elf/dl-libc.c: Adjust for l_scope name change.
* elf/dl-load.c: Likewise.
* elf/dl-object.c: Likewise.
* elf/rtld.c: Likewise.
* include/link.h: Include <rtld-lowlevel.h>. Define struct
r_scoperec. Replace r_scope with pointer to r_scoperec structure.
Add l_scoperec_lock.
* sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
* sysdeps/generic/rtld-lowlevel.h: New file.
* include/atomic.h: Rename atomic_and to atomic_and_val and
atomic_or to atomic_or_val. Define new macros atomic_and and
atomic_or which do not return values.
* sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
Various cleanups.
* sysdeps/i386/i486/bits/atomic.h: Likewise.
* po/sv.po: Update from translation team.
2006-10-07 Ulrich Drepper <drepper@redhat.com>
* Versions.def: Add GLIBC_2.6 to libpthread.
* include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
(versioned_symbol): Likewise.
(compat_symbol): Likewise.
* po/tr.po: Update from translation team.
* nis/Banner: Removed. It's been integral part forever and the
author info is incomplete anyway.
* libio/Banner: Likewise.
2006-10-06 Ulrich Drepper <drepper@redhat.com>
* version.h (VERSION): Bump to 2.5.90 for new development tree.
2007-01-11 22:51:07 +01:00
|
|
|
(i.e., @samp{-help}). This results in a less useful interface, and its
|
2001-06-29 03:19:02 +02:00
|
|
|
use is discouraged as it conflicts with the way most GNU programs work
|
|
|
|
as well as the GNU coding standards.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_SILENT
|
|
|
|
Turns off any message-printing/exiting options, specifically
|
|
|
|
@code{ARGP_NO_EXIT}, @code{ARGP_NO_ERRS}, and @code{ARGP_NO_HELP}.
|
|
|
|
@end vtable
|
|
|
|
|
|
|
|
@node Argp Help Filtering, , Argp Children, Argp Parsers
|
|
|
|
@need 2000
|
|
|
|
@subsection Customizing Argp Help Output
|
|
|
|
|
1998-06-15 20:12:05 +02:00
|
|
|
The @code{help_filter} field in a @code{struct argp} is a pointer to a
|
2001-06-29 03:19:02 +02:00
|
|
|
function that filters the text of help messages before displaying
|
|
|
|
them. They have a function signature like:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
char *@var{help-filter} (int @var{key}, const char *@var{text}, void *@var{input})
|
|
|
|
@end smallexample
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
|
1997-06-05 13:28:54 +02:00
|
|
|
@noindent
|
2001-06-29 03:19:02 +02:00
|
|
|
Where @var{key} is either a key from an option, in which case @var{text}
|
|
|
|
is that option's help text. @xref{Argp Option Vectors}. Alternately, one
|
|
|
|
of the special keys with names beginning with @samp{ARGP_KEY_HELP_}
|
|
|
|
might be used, describing which other help text @var{text} will contain.
|
|
|
|
@xref{Argp Help Filter Keys}.
|
|
|
|
|
|
|
|
The function should return either @var{text} if it remains as-is, or a
|
|
|
|
replacement string allocated using @code{malloc}. This will be either be
|
|
|
|
freed by argp or zero, which prints nothing. The value of @var{text} is
|
|
|
|
supplied @emph{after} any translation has been done, so if any of the
|
|
|
|
replacement text needs translation, it will be done by the filter
|
|
|
|
function. @var{input} is either the input supplied to @code{argp_parse}
|
|
|
|
or it is zero, if @code{argp_help} was called directly by the user.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@menu
|
|
|
|
* Keys: Argp Help Filter Keys. Special @var{key} values for help filter functions.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Help Filter Keys, , , Argp Help Filtering
|
|
|
|
@subsubsection Special Keys for Argp Help Filter Functions
|
|
|
|
|
|
|
|
The following special values may be passed to an argp help filter
|
2001-06-29 03:19:02 +02:00
|
|
|
function as the first argument in addition to key values for user
|
|
|
|
options. They specify which help text the @var{text} argument contains:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_HELP_PRE_DOC
|
2001-06-29 03:19:02 +02:00
|
|
|
The help text preceding options.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_HELP_POST_DOC
|
2001-06-29 03:19:02 +02:00
|
|
|
The help text following options.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_HELP_HEADER
|
2001-06-29 03:19:02 +02:00
|
|
|
The option header string.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_HELP_EXTRA
|
2001-06-29 03:19:02 +02:00
|
|
|
This is used after all other documentation; @var{text} is zero for this key.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_HELP_DUP_ARGS_NOTE
|
2001-06-29 03:19:02 +02:00
|
|
|
The explanatory note printed when duplicate option arguments have been suppressed.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
|
|
|
@item ARGP_KEY_HELP_ARGS_DOC
|
2001-06-29 03:19:02 +02:00
|
|
|
The argument doc string; formally the @code{args_doc} field from the argp parser. @xref{Argp Parsers}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end vtable
|
|
|
|
|
|
|
|
@node Argp Help, Argp Examples, Argp Flags, Argp
|
|
|
|
@subsection The @code{argp_help} Function
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
Normally programs using argp need not be written with particular
|
|
|
|
printing argument-usage-type help messages in mind as the standard
|
|
|
|
@samp{--help} option is handled automatically by argp. Typical error
|
|
|
|
cases can be handled using @code{argp_usage} and
|
|
|
|
@code{argp_error}. @xref{Argp Helper Functions}. However, if it's
|
|
|
|
desirable to print a help message in some context other than parsing the
|
|
|
|
program options, argp offers the @code{argp_help} interface.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@comment argp.h
|
|
|
|
@comment GNU
|
1998-06-11 16:56:10 +02:00
|
|
|
@deftypefun void argp_help (const struct argp *@var{argp}, FILE *@var{stream}, unsigned @var{flags}, char *@var{name})
|
2001-06-29 03:19:02 +02:00
|
|
|
This outputs a help message for the argp parser @var{argp} to
|
|
|
|
@var{stream}. The type of messages printed will be determined by
|
|
|
|
@var{flags}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
Any options such as @samp{--help} that are implemented automatically by
|
|
|
|
argp itself will @emph{not} be present in the help output; for this
|
2001-06-29 03:19:02 +02:00
|
|
|
reason it is best to use @code{argp_state_help} if calling from within
|
|
|
|
an argp parser function. @xref{Argp Helper Functions}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Flags: Argp Help Flags. Specifying what sort of help message to print.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Help Flags, , , Argp Help
|
|
|
|
@subsection Flags for the @code{argp_help} Function
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
When calling @code{argp_help} (@pxref{Argp Help}) or
|
|
|
|
@code{argp_state_help} (@pxref{Argp Helper Functions}) the exact output
|
|
|
|
is determined by the @var{flags} argument. This should consist of any of
|
|
|
|
the following flags, or'd together:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@item ARGP_HELP_USAGE
|
|
|
|
A unix @samp{Usage:} message that explicitly lists all options.
|
|
|
|
|
|
|
|
@item ARGP_HELP_SHORT_USAGE
|
2001-06-29 03:19:02 +02:00
|
|
|
A unix @samp{Usage:} message that displays an appropriate placeholder to
|
|
|
|
indicate where the options go; useful for showing the non-option
|
|
|
|
argument syntax.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ARGP_HELP_SEE
|
|
|
|
A @samp{Try @dots{} for more help} message; @samp{@dots{}} contains the
|
|
|
|
program name and @samp{--help}.
|
|
|
|
|
|
|
|
@item ARGP_HELP_LONG
|
2001-06-29 03:19:02 +02:00
|
|
|
A verbose option help message that gives each option available along
|
1997-06-05 13:28:54 +02:00
|
|
|
with its documentation string.
|
|
|
|
|
|
|
|
@item ARGP_HELP_PRE_DOC
|
2001-06-29 03:19:02 +02:00
|
|
|
The part of the argp parser doc string preceding the verbose option help.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ARGP_HELP_POST_DOC
|
2001-06-29 03:19:02 +02:00
|
|
|
The part of the argp parser doc string that following the verbose option help.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ARGP_HELP_DOC
|
|
|
|
@code{(ARGP_HELP_PRE_DOC | ARGP_HELP_POST_DOC)}
|
|
|
|
|
|
|
|
@item ARGP_HELP_BUG_ADDR
|
2001-06-29 03:19:02 +02:00
|
|
|
A message that prints where to report bugs for this program, if the
|
|
|
|
@code{argp_program_bug_address} variable contains this information.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ARGP_HELP_LONG_ONLY
|
2001-06-29 03:19:02 +02:00
|
|
|
This will modify any output to reflect the @code{ARGP_LONG_ONLY} mode.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end vtable
|
|
|
|
|
|
|
|
The following flags are only understood when used with
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{argp_state_help}. They control whether the function returns after
|
1997-06-05 13:28:54 +02:00
|
|
|
printing its output, or terminates the program:
|
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@item ARGP_HELP_EXIT_ERR
|
2001-06-29 03:19:02 +02:00
|
|
|
This will terminate the program with @code{exit (argp_err_exit_status)}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ARGP_HELP_EXIT_OK
|
2001-06-29 03:19:02 +02:00
|
|
|
This will terminate the program with @code{exit (0)}.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end vtable
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
The following flags are combinations of the basic flags for printing
|
1997-06-05 13:28:54 +02:00
|
|
|
standard messages:
|
|
|
|
|
|
|
|
@vtable @code
|
|
|
|
@item ARGP_HELP_STD_ERR
|
2001-06-29 03:19:02 +02:00
|
|
|
Assuming that an error message for a parsing error has printed, this
|
|
|
|
prints a message on how to get help, and terminates the program with an
|
1997-06-05 13:28:54 +02:00
|
|
|
error.
|
|
|
|
|
|
|
|
@item ARGP_HELP_STD_USAGE
|
2001-06-29 03:19:02 +02:00
|
|
|
This prints a standard usage message and terminates the program with an
|
|
|
|
error. This is used when no other specific error messages are
|
|
|
|
appropriate or available.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item ARGP_HELP_STD_HELP
|
2001-06-29 03:19:02 +02:00
|
|
|
This prints the standard response for a @samp{--help} option, and
|
|
|
|
terminates the program successfully.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end vtable
|
|
|
|
|
|
|
|
@node Argp Examples, Argp User Customization, Argp Help, Argp
|
|
|
|
@subsection Argp Examples
|
|
|
|
|
|
|
|
These example programs demonstrate the basic usage of argp.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* 1: Argp Example 1. A minimal program using argp.
|
|
|
|
* 2: Argp Example 2. A program using only default options.
|
|
|
|
* 3: Argp Example 3. A simple program with user options.
|
|
|
|
* 4: Argp Example 4. Combining multiple argp parsers.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Argp Example 1, Argp Example 2, , Argp Examples
|
|
|
|
@subsubsection A Minimal Program Using Argp
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
This is perhaps the smallest program possible that uses argp. It won't
|
|
|
|
do much except give an error messages and exit when there are any
|
|
|
|
arguments, and prints a rather pointless message for @samp{--help}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
@include argp-ex1.c.texi
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@node Argp Example 2, Argp Example 3, Argp Example 1, Argp Examples
|
|
|
|
@subsubsection A Program Using Argp with Only Default Options
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
This program doesn't use any options or arguments, it uses argp to be
|
1997-06-05 13:28:54 +02:00
|
|
|
compliant with the GNU standard command line format.
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
In addition to giving no arguments and implementing a @samp{--help}
|
|
|
|
option, this example has a @samp{--version} option, which will put the
|
|
|
|
given documentation string and bug address in the @samp{--help} output,
|
|
|
|
as per GNU standards.
|
|
|
|
|
|
|
|
The variable @code{argp} contains the argument parser
|
|
|
|
specification. Adding fields to this structure is the way most
|
|
|
|
parameters are passed to @code{argp_parse}. The first three fields are
|
|
|
|
normally used, but they are not in this small program. There are also
|
|
|
|
two global variables that argp can use defined here,
|
|
|
|
@code{argp_program_version} and @code{argp_program_bug_address}. They
|
|
|
|
are considered global variables because they will almost always be
|
|
|
|
constant for a given program, even if they use different argument
|
|
|
|
parsers for various tasks.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
@include argp-ex2.c.texi
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@node Argp Example 3, Argp Example 4, Argp Example 2, Argp Examples
|
|
|
|
@subsubsection A Program Using Argp with User Options
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
This program uses the same features as example 2, adding user options
|
1997-06-05 13:28:54 +02:00
|
|
|
and arguments.
|
|
|
|
|
2001-06-29 03:19:02 +02:00
|
|
|
We now use the first four fields in @code{argp} (@pxref{Argp Parsers})
|
|
|
|
and specify @code{parse_opt} as the parser function. @xref{Argp Parser
|
|
|
|
Functions}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
Note that in this example, @code{main} uses a structure to communicate
|
|
|
|
with the @code{parse_opt} function, a pointer to which it passes in the
|
2001-06-29 03:19:02 +02:00
|
|
|
@code{input} argument to @code{argp_parse}. @xref{Argp}. It is retrieved
|
|
|
|
by @code{parse_opt} through the @code{input} field in its @code{state}
|
|
|
|
argument. @xref{Argp Parsing State}. Of course, it's also possible to
|
|
|
|
use global variables instead, but using a structure like this is
|
|
|
|
somewhat more flexible and clean.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
@include argp-ex3.c.texi
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@node Argp Example 4, , Argp Example 3, Argp Examples
|
|
|
|
@subsubsection A Program Using Multiple Combined Argp Parsers
|
|
|
|
|
|
|
|
This program uses the same features as example 3, but has more options,
|
2001-06-29 03:19:02 +02:00
|
|
|
and presents more structure in the @samp{--help} output. It also
|
|
|
|
illustrates how you can `steal' the remainder of the input arguments
|
|
|
|
past a certain point for programs that accept a list of items. It also
|
|
|
|
illustrates the @var{key} value @code{ARGP_KEY_NO_ARGS}, which is only
|
|
|
|
given if no non-option arguments were supplied to the
|
|
|
|
program. @xref{Argp Special Keys}.
|
|
|
|
|
|
|
|
For structuring help output, two features are used: @emph{headers} and a
|
|
|
|
two part option string. The @emph{headers} are entries in the options
|
|
|
|
vector. @xref{Argp Option Vectors}. The first four fields are zero. The
|
|
|
|
two part documentation string are in the variable @code{doc}, which
|
|
|
|
allows documentation both before and after the options. @xref{Argp
|
2001-07-06 11:21:36 +02:00
|
|
|
Parsers}, the two parts of @code{doc} are separated by a vertical-tab
|
2001-06-29 03:19:02 +02:00
|
|
|
character (@code{'\v'}, or @code{'\013'}). By convention, the
|
|
|
|
documentation before the options is a short string stating what the
|
|
|
|
program does, and after any options it is longer, describing the
|
|
|
|
behavior in more detail. All documentation strings are automatically
|
|
|
|
filled for output, although newlines may be included to force a line
|
|
|
|
break at a particular point. In addition, documentation strings are
|
|
|
|
passed to the @code{gettext} function, for possible translation into the
|
|
|
|
current locale.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@smallexample
|
|
|
|
@include argp-ex4.c.texi
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
@node Argp User Customization, , Argp Examples, Argp
|
|
|
|
@subsection Argp User Customization
|
|
|
|
|
|
|
|
@cindex ARGP_HELP_FMT environment variable
|
2001-06-29 03:19:02 +02:00
|
|
|
The formatting of argp @samp{--help} output may be controlled to some
|
|
|
|
extent by a program's users, by setting the @code{ARGP_HELP_FMT}
|
|
|
|
environment variable to a comma-separated list of tokens. Whitespace is
|
|
|
|
ignored:
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@table @samp
|
|
|
|
@item dup-args
|
|
|
|
@itemx no-dup-args
|
2001-06-29 03:19:02 +02:00
|
|
|
These turn @dfn{duplicate-argument-mode} on or off. In duplicate
|
|
|
|
argument mode, if an option that accepts an argument has multiple names,
|
|
|
|
the argument is shown for each name. Otherwise, it is only shown for the
|
|
|
|
first long option. A note is subsequently printed so the user knows that
|
|
|
|
it applies to other names as well. The default is @samp{no-dup-args},
|
1997-06-05 13:28:54 +02:00
|
|
|
which is less consistent, but prettier.
|
|
|
|
|
|
|
|
@item dup-args-note
|
|
|
|
@item no-dup-args-note
|
2001-06-29 03:19:02 +02:00
|
|
|
These will enable or disable the note informing the user of suppressed
|
|
|
|
option argument duplication. The default is @samp{dup-args-note}.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item short-opt-col=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This prints the first short option in column @var{n}. The default is 2.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item long-opt-col=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This prints the first long option in column @var{n}. The default is 6.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item doc-opt-col=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This prints `documentation options' (@pxref{Argp Option Flags}) in
|
|
|
|
column @var{n}. The default is 2.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item opt-doc-col=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This prints the documentation for options starting in column
|
|
|
|
@var{n}. The default is 29.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item header-col=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This will indent the group headers that document groups of options to
|
|
|
|
column @var{n}. The default is 1.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item usage-indent=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This will indent continuation lines in @samp{Usage:} messages to column
|
|
|
|
@var{n}. The default is 12.
|
1997-06-05 13:28:54 +02:00
|
|
|
|
|
|
|
@item rmargin=@var{n}
|
2001-06-29 03:19:02 +02:00
|
|
|
This will word wrap help output at or before column @var{n}. The default
|
|
|
|
is 79.
|
1997-06-05 13:28:54 +02:00
|
|
|
@end table
|