1
1
This commit was SVN r25325.
Этот коммит содержится в:
Ralph Castain 2011-10-19 14:14:58 +00:00
родитель a5f24bcdcf
Коммит 72a4b0bd8a

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

@ -70,7 +70,7 @@ static int pubsub_pmi_component_query(mca_base_module_t **module, int *priority)
if (PMI_SUCCESS != PMI_Init(&spawned)) { if (PMI_SUCCESS != PMI_Init(&spawned)) {
*priority = -1; *priority = -1;
*module = NULL; *module = NULL;
return ORTE_ERROR; return OMPI_ERROR;
} }
} }
/* if we were able to startup PMI, or it was already /* if we were able to startup PMI, or it was already
@ -78,11 +78,11 @@ static int pubsub_pmi_component_query(mca_base_module_t **module, int *priority)
*/ */
*priority = 100; *priority = 100;
*module = (mca_base_module_t *)&ompi_pubsub_pmi_module; *module = (mca_base_module_t *)&ompi_pubsub_pmi_module;
return ORTE_SUCCESS; return OMPI_SUCCESS;
} }
/* we can't run */ /* we can't run */
*priority = -1; *priority = -1;
*module = NULL; *module = NULL;
return ORTE_ERROR; return OMPI_ERROR;
} }