remove unused, deprecated function opal_cmd_line_make_opt
This commit was SVN r27437.
Этот коммит содержится в:
родитель
1f24f1d305
Коммит
47fff80a56
@ -201,34 +201,6 @@ int opal_cmd_line_make_opt_mca(opal_cmd_line_t *cmd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Create a command line option, --long-name and/or -s (short name).
|
|
||||||
*/
|
|
||||||
int opal_cmd_line_make_opt(opal_cmd_line_t *cmd, char short_name,
|
|
||||||
const char *long_name, int num_params,
|
|
||||||
const char *desc)
|
|
||||||
{
|
|
||||||
opal_cmd_line_init_t e;
|
|
||||||
|
|
||||||
e.ocl_mca_type_name = NULL;
|
|
||||||
e.ocl_mca_component_name = NULL;
|
|
||||||
e.ocl_mca_param_name = NULL;
|
|
||||||
|
|
||||||
e.ocl_cmd_short_name = short_name;
|
|
||||||
e.ocl_cmd_single_dash_name = NULL;
|
|
||||||
e.ocl_cmd_long_name = long_name;
|
|
||||||
|
|
||||||
e.ocl_num_params = num_params;
|
|
||||||
|
|
||||||
e.ocl_variable_dest = NULL;
|
|
||||||
e.ocl_variable_type = OPAL_CMD_LINE_TYPE_NULL;
|
|
||||||
|
|
||||||
e.ocl_description = desc;
|
|
||||||
|
|
||||||
return make_opt(cmd, &e);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create a command line option, --long-name and/or -s (short name).
|
* Create a command line option, --long-name and/or -s (short name).
|
||||||
*/
|
*/
|
||||||
|
@ -70,13 +70,13 @@
|
|||||||
*
|
*
|
||||||
* The caller to this interface creates a command line handle
|
* The caller to this interface creates a command line handle
|
||||||
* (opal_cmd_line_t) with OBJ_NEW() and then uses it to register the
|
* (opal_cmd_line_t) with OBJ_NEW() and then uses it to register the
|
||||||
* desired parameters via opal_cmd_line_make_opt3() (or the deprecated
|
* desired parameters via opal_cmd_line_make_opt3(). Once all the
|
||||||
* opal_cmd_line_make_opt()). Once all the parameters have been
|
* parameters have been registered, the user invokes
|
||||||
* registered, the user invokes opal_cmd_line_parse() with the command
|
* opal_cmd_line_parse() with the command line handle and the argv/argc
|
||||||
* line handle and the argv/argc pair to be parsed (typically the
|
* pair to be parsed (typically the arguments from main()). The parser
|
||||||
* arguments from main()). The parser will examine the argv and find
|
* will examine the argv and find registered options and parameters.
|
||||||
* registered options and parameters. It will stop parsing when it
|
* It will stop parsing when it runs into an recognized string token or
|
||||||
* runs into an recognized string token or the special "--" token.
|
* the special "--" token.
|
||||||
*
|
*
|
||||||
* After the parse has occurred, various accessor functions can be
|
* After the parse has occurred, various accessor functions can be
|
||||||
* used to determine which options were selected, what parameters were
|
* used to determine which options were selected, what parameters were
|
||||||
@ -288,22 +288,6 @@ BEGIN_C_DECLS
|
|||||||
OPAL_DECLSPEC int opal_cmd_line_make_opt_mca(opal_cmd_line_t *cmd,
|
OPAL_DECLSPEC int opal_cmd_line_make_opt_mca(opal_cmd_line_t *cmd,
|
||||||
opal_cmd_line_init_t entry);
|
opal_cmd_line_init_t entry);
|
||||||
|
|
||||||
/**
|
|
||||||
* \deprecated
|
|
||||||
*
|
|
||||||
* Create a command line option.
|
|
||||||
*
|
|
||||||
* This function is an older [deprecated] form of
|
|
||||||
* opal_cmd_line_make_opt3(). It is exactly equivalent to
|
|
||||||
* opal_cmd_line_make_opt3(cmd, short_name, NULL, long_name,
|
|
||||||
* num_params, desc).
|
|
||||||
*/
|
|
||||||
OPAL_DECLSPEC int opal_cmd_line_make_opt(opal_cmd_line_t *cmd,
|
|
||||||
char short_name,
|
|
||||||
const char *long_name,
|
|
||||||
int num_params,
|
|
||||||
const char *desc) __opal_attribute_deprecated__;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a command line option.
|
* Create a command line option.
|
||||||
*
|
*
|
||||||
@ -318,7 +302,7 @@ BEGIN_C_DECLS
|
|||||||
* @retval OPAL_ERR_BAD_PARAM If bad parameters passed.
|
* @retval OPAL_ERR_BAD_PARAM If bad parameters passed.
|
||||||
* @retval OPAL_SUCCESS Upon success.
|
* @retval OPAL_SUCCESS Upon success.
|
||||||
*
|
*
|
||||||
* Adds a command line option to the list of options that a a OPAL
|
* Adds a command line option to the list of options that an OPAL
|
||||||
* command line handle will accept. The short_name may take the
|
* command line handle will accept. The short_name may take the
|
||||||
* special value '\0' to not have a short name. Likewise, the
|
* special value '\0' to not have a short name. Likewise, the
|
||||||
* sd_name and long_name may take the special value NULL to not have
|
* sd_name and long_name may take the special value NULL to not have
|
||||||
@ -440,7 +424,7 @@ BEGIN_C_DECLS
|
|||||||
* Returns a formatted string suitable for printing that lists the
|
* Returns a formatted string suitable for printing that lists the
|
||||||
* expected usage message and a short description of each option on
|
* expected usage message and a short description of each option on
|
||||||
* the OPAL command line handle. Options that passed a NULL
|
* the OPAL command line handle. Options that passed a NULL
|
||||||
* description to opal_cmd_line_make_opt() will not be included in the
|
* description to opal_cmd_line_make_opt3() will not be included in the
|
||||||
* display (to allow for undocumented options).
|
* display (to allow for undocumented options).
|
||||||
*
|
*
|
||||||
* This function is typically only invoked internally by the
|
* This function is typically only invoked internally by the
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user