1
1

opal envlist mca: implement Jeff`s quibbles

fixed by Elena, reviewed by Miked

This commit was SVN r32216.
Этот коммит содержится в:
Mike Dubman 2014-07-11 07:23:20 +00:00
родитель ee9098e2ee
Коммит e342a11c2e
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -1410,7 +1410,7 @@ static int fca_register(void)
mca_coll_fca_component.compiletime_version = FCA_VERNO_STRING;
(void) mca_base_component_var_register(c,
MCA_COMPILETIME_VER,
"Version of the libfca library ompi compiled with",
"Version of the libfca library with which Open MPI was compiled",
MCA_BASE_VAR_TYPE_VERSION_STRING,
NULL, 0, 0,
OPAL_INFO_LVL_3,
@ -1419,7 +1419,7 @@ static int fca_register(void)
mca_coll_fca_component.runtime_version = fca_get_version_string();
(void) mca_base_component_var_register(c,
MCA_RUNTIME_VER,
"Version of the libfca library ompi run with",
"Version of the libfca library with which Open MPI is running",
MCA_BASE_VAR_TYPE_VERSION_STRING,
NULL, 0, 0,
OPAL_INFO_LVL_3,

Просмотреть файл

@ -210,7 +210,7 @@ static int hcoll_register(void)
mca_coll_hcoll_component.compiletime_version = HCOLL_VERNO_STRING;
mca_base_component_var_register(&mca_coll_hcoll_component.super.collm_version,
MCA_COMPILETIME_VER,
"Version of the libhcoll library ompi compiled with",
"Version of the libhcoll library with which Open MPI was compiled",
MCA_BASE_VAR_TYPE_VERSION_STRING,
NULL, 0, 0,
OPAL_INFO_LVL_3,
@ -219,7 +219,7 @@ static int hcoll_register(void)
mca_coll_hcoll_component.runtime_version = hcoll_get_version();
mca_base_component_var_register(&mca_coll_hcoll_component.super.collm_version,
MCA_RUNTIME_VER,
"Version of the libhcoll library ompi run with",
"Version of the libhcoll library with which Open MPI is running",
MCA_BASE_VAR_TYPE_VERSION_STRING,
NULL, 0, 0,
OPAL_INFO_LVL_3,

Просмотреть файл

@ -95,7 +95,7 @@ static int ompi_mtl_mxm_component_register(void)
ompi_mtl_mxm.compiletime_version = MXM_VERNO_STRING;
(void) mca_base_component_var_register(c,
MCA_COMPILETIME_VER,
"Version of the libmxm library ompi compiled with",
"Version of the libmxm library with which Open MPI was compiled",
MCA_BASE_VAR_TYPE_VERSION_STRING,
NULL, 0, 0,
OPAL_INFO_LVL_3,
@ -114,7 +114,7 @@ static int ompi_mtl_mxm_component_register(void)
(void) mca_base_component_var_register(c,
MCA_RUNTIME_VER,
"Version of the libmxm library ompi run with",
"Version of the libmxm library with which Open MPI is running",
MCA_BASE_VAR_TYPE_VERSION_STRING,
NULL, 0, 0,
OPAL_INFO_LVL_3,

Просмотреть файл

@ -87,7 +87,7 @@ to display; the second parameter is the specific component to display
Show MCA parameters of the type specified in the parameter. Accepts the
following parameters: unsigned_int, unsigned_long, unsigned_long_long,
size_t, string, version_string, bool, double. By default level
is 9 unless it is specified with \-\-level.
is 1 unless it is specified with \-\-level.
.TP 8
.I \-\-parsable
When used in conjunction with other parameters, the output is

Просмотреть файл

@ -536,7 +536,7 @@ void opal_info_err_params(opal_pointer_array_t *component_map)
void opal_info_do_type(opal_cmd_line_t *opal_info_cmd_line)
{
mca_base_var_info_lvl_t max_level = OPAL_INFO_LVL_9;
mca_base_var_info_lvl_t max_level = OPAL_INFO_LVL_1;
int count;
char *type, *str;
int i, j, k, len, ret;