1
1

Tell orted it is infrastructure

This commit was SVN r6227.
Этот коммит содержится в:
Ralph Castain 2005-06-30 16:32:02 +00:00
родитель 5701b4dbfb
Коммит 67a1c5e5e6

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

@ -245,6 +245,14 @@ int main(int argc, char *argv[])
} }
/* Intialize the Open RTE */ /* Intialize the Open RTE */
/* first, set the flag telling orte_init that I am NOT a
* singleton, but am "infrastructure" - prevents setting
* up incorrect infrastructure that only a singleton would
* require
*/
ret = mca_base_param_register_int("orte", "base", "infrastructure", NULL, 0);
mca_base_param_set_int(ret, 1);
if (ORTE_SUCCESS != (ret = orte_init())) { if (ORTE_SUCCESS != (ret = orte_init())) {
fprintf(stderr, "orted: failed to init rte\n"); fprintf(stderr, "orted: failed to init rte\n");
return ret; return ret;