1
1
This commit was SVN r6260.
Этот коммит содержится в:
Jeff Squyres 2005-07-01 20:40:56 +00:00
родитель b648c93dc7
Коммит af7c90803e

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

@ -212,6 +212,12 @@ int ompi_comm_finalize(void)
OBJ_DESTRUCT( &ompi_mpi_comm_world );
if( ompi_mpi_comm_parent != &ompi_mpi_comm_null ) {
/* Note that we pass ompi_mpi_comm_parent here
(vs. &ompi_mpi_comm_parent) because it is of type
(ompi_communicator_t*), *NOT* (ompi_communicator_t). This
is because a parent communicator is created dynamically
during init, and we just set this pointer to it. Hence, we
just pass in the pointer here. */
OBJ_DESTRUCT (ompi_mpi_comm_parent);
}