1
1

move the initialization of ompi_process_info after the RTE

initialization.

This commit was SVN r1698.
Этот коммит содержится в:
Rich Graham 2004-07-13 21:02:49 +00:00
родитель 3f5a147c66
Коммит f6af7c50ee

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

@ -65,7 +65,6 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
ompi_system_info structure */
ompi_sys_info();
ompi_proc_info();
/* Become a OMPI process */
@ -91,6 +90,10 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
return ret;
}
/* Initialize the ompi_process_info structe. This must be called
* after the rte is inited */
ompi_proc_info();
/* initialize ompi procs */
if (OMPI_SUCCESS != (ret = ompi_proc_init())) {
/* JMS show_help */