1
1

Per George's suggestion, move the DPS init to its proper place.

This commit was SVN r5582.
Этот коммит содержится в:
Jeff Squyres 2005-05-04 00:11:36 +00:00
родитель 9a06cdecc9
Коммит 9e8dfd0882
2 изменённых файлов: 7 добавлений и 8 удалений

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

@ -114,6 +114,13 @@ void ompi_info::open_components()
}
}
// Open the DPS
if (ORTE_SUCCESS != orte_dps_open()) {
printf( "Unable to initialize the DPS\n" );
return;
}
// Open up the MCA
mca_base_open();

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

@ -77,14 +77,6 @@ int main(int argc, char *argv[])
exit(ret);
}
/*
* Initialize the data packing service.
*/
if (ORTE_SUCCESS != (ret = orte_dps_open())) {
printf( "Unable to initialize the DPS component\n" );
return ret;
}
ompi_cmd_line_make_opt(cmd_line, 'v', "version", 2,
"Show version of Open MPI or a component");
ompi_cmd_line_make_opt(cmd_line, '\0', "param", 2,