From 1e825888a5ee8ae358db9c4ae8017723e747eba6 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Fri, 13 Jul 2007 23:56:09 +0000 Subject: [PATCH] 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. --- ompi/mca/pml/cm/pml_cm_component.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ompi/mca/pml/cm/pml_cm_component.c b/ompi/mca/pml/cm/pml_cm_component.c index 30bcff9eeb..27ff6be8b3 100644 --- a/ompi/mca/pml/cm/pml_cm_component.c +++ b/ompi/mca/pml/cm/pml_cm_component.c @@ -164,9 +164,6 @@ mca_pml_cm_component_fini(void) /* shut down buffered send code */ 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) { return ompi_mtl->mtl_finalize(ompi_mtl); }