1
1

Moving totalview spin to the very end of mpi_init

This commit was SVN r7444.
Этот коммит содержится в:
David Daniel 2005-09-20 15:22:15 +00:00
родитель c25ffb343a
Коммит e4985c2a07

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

@ -144,9 +144,6 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
goto error;
}
/* Do we need to wait for a TotalView-like debugger? */
ompi_wait_for_totalview();
/* Setup process affinity */
if (ompi_mpi_paffinity_alone) {
@ -516,5 +513,8 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
ORTE_NAME_ARGS(orte_process_info.my_name));
}
/* Do we need to wait for a TotalView-like debugger? */
ompi_wait_for_totalview();
return MPI_SUCCESS;
}