1
1

Fix the problem reported on #1087. The global send and receive requests queues are

now release in the base close, so there is no need for the cm PML to destroy them.

This commit was SVN r15425.
Этот коммит содержится в:
George Bosilca 2007-07-13 23:56:09 +00:00
родитель c9ad5d1f24
Коммит 1e825888a5

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

@ -164,9 +164,6 @@ mca_pml_cm_component_fini(void)
/* shut down buffered send code */ /* shut down buffered send code */
mca_pml_base_bsend_fini(); mca_pml_base_bsend_fini();
OBJ_DESTRUCT(&mca_pml_base_send_requests);
OBJ_DESTRUCT(&mca_pml_base_recv_requests);
if (NULL != ompi_mtl && NULL != ompi_mtl->mtl_finalize) { if (NULL != ompi_mtl && NULL != ompi_mtl->mtl_finalize) {
return ompi_mtl->mtl_finalize(ompi_mtl); return ompi_mtl->mtl_finalize(ompi_mtl);
} }