1
1

Now that the free list are correctly destroyed these tests are useless.

This commit was SVN r8792.
Этот коммит содержится в:
George Bosilca 2006-01-23 20:33:40 +00:00
родитель 320830a25f
Коммит 83cd8fac9d
4 изменённых файлов: 0 добавлений и 39 удалений

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

@ -115,15 +115,6 @@ int mca_pml_teg_component_close(void)
if(OMPI_SUCCESS != (rc = mca_ptl_base_close()))
return rc;
#if OMPI_ENABLE_DEBUG
if (mca_pml_teg.teg_recv_requests.fl_num_allocated !=
mca_pml_teg.teg_recv_requests.super.opal_list_length) {
opal_output(0, "teg recv requests: %d allocated %d returned\n",
mca_pml_teg.teg_recv_requests.fl_num_allocated,
mca_pml_teg.teg_recv_requests.super.opal_list_length);
}
#endif
if(NULL != mca_pml_teg.teg_ptl_components) {
free(mca_pml_teg.teg_ptl_components);
mca_pml_teg.teg_ptl_components = NULL;

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

@ -114,15 +114,6 @@ int mca_pml_uniq_component_close(void)
if( OMPI_SUCCESS != (rc = mca_ptl_base_close()) )
return rc;
#if OMPI_ENABLE_DEBUG
if (mca_pml_uniq.uniq_recv_requests.fl_num_allocated !=
mca_pml_uniq.uniq_recv_requests.super.opal_list_length) {
opal_output(0, "uniq recv requests: %d allocated %d returned\n",
mca_pml_uniq.uniq_recv_requests.fl_num_allocated,
mca_pml_uniq.uniq_recv_requests.super.opal_list_length);
}
#endif
if(NULL != mca_pml_uniq.uniq_ptl_components) {
free(mca_pml_uniq.uniq_ptl_components);
mca_pml_uniq.uniq_ptl_components = NULL;

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

@ -124,13 +124,6 @@ int mca_ptl_self_component_close(void)
if( NULL == mca_ptl_self_component.self_local )
return OMPI_SUCCESS;
if (mca_ptl_self_component.self_send_requests.fl_num_allocated !=
mca_ptl_self_component.self_send_requests.super.opal_list_length) {
opal_output(0, "self send requests: %d allocated %d returned\n",
mca_ptl_self_component.self_send_requests.fl_num_allocated,
mca_ptl_self_component.self_send_requests.super.opal_list_length);
}
OBJ_DESTRUCT( &(mca_ptl_self_component.self_send_requests) );
return OMPI_SUCCESS;

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

@ -229,20 +229,6 @@ int mca_ptl_tcp_component_close(void)
#ifdef __WINDOWS__
WSACleanup();
#endif
#if OMPI_ENABLE_DEBUG
if (mca_ptl_tcp_component.tcp_send_frags.fl_num_allocated !=
mca_ptl_tcp_component.tcp_send_frags.super.opal_list_length) {
opal_output(0, "tcp send frags: %d allocated %d returned\n",
mca_ptl_tcp_component.tcp_send_frags.fl_num_allocated,
mca_ptl_tcp_component.tcp_send_frags.super.opal_list_length);
}
if (mca_ptl_tcp_component.tcp_recv_frags.fl_num_allocated !=
mca_ptl_tcp_component.tcp_recv_frags.super.opal_list_length) {
opal_output(0, "tcp recv frags: %d allocated %d returned\n",
mca_ptl_tcp_component.tcp_recv_frags.fl_num_allocated,
mca_ptl_tcp_component.tcp_recv_frags.super.opal_list_length);
}
#endif
if(NULL != mca_ptl_tcp_component.tcp_if_include)
free(mca_ptl_tcp_component.tcp_if_include);