1
1

Fix BTL_VERBOSE - when the MCA param change was committed, it left the base verbosity variable declared so things compiled. Sadly, the verbosity was now being set to a new variable, so debug never was output.

This commit was SVN r28414.
Этот коммит содержится в:
Ralph Castain 2013-04-30 01:15:52 +00:00
родитель f384263de7
Коммит ceb4061214

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

@ -130,6 +130,9 @@ static int mca_btl_base_open(mca_base_open_flag_t flags)
OBJ_CONSTRUCT(&mca_btl_base_modules_initialized, opal_list_t); OBJ_CONSTRUCT(&mca_btl_base_modules_initialized, opal_list_t);
/* get the verbosity so that BTL_VERBOSE will work */
mca_btl_base_verbose = opal_output_get_verbosity(ompi_btl_base_framework.framework_output);
/* All done */ /* All done */
return OMPI_SUCCESS; return OMPI_SUCCESS;
} }