1
1

tell the user no mvapi modules are found..

This commit was SVN r7016.
Этот коммит содержится в:
Galen Shipman 2005-08-24 21:59:55 +00:00
родитель 5c82e522c3
Коммит 8c85aaf85a

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

@ -356,10 +356,13 @@ mca_btl_base_module_t** mca_btl_mvapi_component_init(int *num_btl_modules,
}
if(0 == mca_btl_mvapi_component.ib_num_btls){
BTL_ERROR(("no mvapi btl's found on this host!"));
return NULL;
}
/* Allocate space for btl modules */
mca_btl_mvapi_component.mvapi_btls = (mca_btl_mvapi_module_t*) malloc(sizeof(mca_btl_mvapi_module_t) *
mca_btl_mvapi_component.ib_num_btls);
mca_btl_mvapi_component.ib_num_btls);
if(NULL == mca_btl_mvapi_component.mvapi_btls) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);