1
1

Ensure that the call to orte_routed is properly protected at compile time when RTE support is disabled

This commit was SVN r18681.
Этот коммит содержится в:
Ralph Castain 2008-06-19 15:20:06 +00:00
родитель e4172a3c44
Коммит 265b4de5de

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

@ -303,15 +303,15 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
}
orte_setup = true;
if (!ORTE_DISABLE_FULL_SUPPORT) {
/* warmup the OOB routes. Do this here because
it will go much faster before the event library is switched
into non-blocking mode */
if (OMPI_SUCCESS != (ret = orte_routed.warmup_routes())) {
error = "orte_routed_warmup_routes() failed";
goto error;
}
#if !ORTE_DISABLE_FULL_SUPPORT
/* warmup the OOB routes. Do this here because
it will go much faster before the event library is switched
into non-blocking mode */
if (OMPI_SUCCESS != (ret = orte_routed.warmup_routes())) {
error = "orte_routed_warmup_routes() failed";
goto error;
}
#endif
/* check for timing request - get stop time and report elapsed time if so */
if (timing && 0 == ORTE_PROC_MY_NAME->vpid) {