From 4fd2a71b6c00ad680b3ffed583d237e3e5f906c0 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Thu, 27 Apr 2006 15:34:12 +0000 Subject: [PATCH] removed debug code - free list implementation has changed This commit was SVN r9750. --- ompi/mca/btl/template/btl_template.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/ompi/mca/btl/template/btl_template.c b/ompi/mca/btl/template/btl_template.c index 7d9dd10ef5..1519140278 100644 --- a/ompi/mca/btl/template/btl_template.c +++ b/ompi/mca/btl/template/btl_template.c @@ -397,26 +397,6 @@ int mca_btl_template_get( int mca_btl_template_finalize(struct mca_btl_base_module_t* btl) { mca_btl_template_module_t* template_btl = (mca_btl_template_module_t*) btl; - - if(template_btl->template_frag_eager.fl_num_allocated != - template_btl->template_frag_eager.super.opal_list_length){ - opal_output(0, "btl template_frag_eager: %d allocated %d returned \n", - template_btl->template_frag_eager.fl_num_allocated, - template_btl->template_frag_eager.super.opal_list_length); - } - if(template_btl->template_frag_max.fl_num_allocated != - template_btl->template_frag_max.super.opal_list_length) { - opal_output(0, "btl template_frag_max: %d allocated %d returned \n", - template_btl->template_frag_max.fl_num_allocated, - template_btl->template_frag_max.super.opal_list_length); - } - if(template_btl->template_frag_user.fl_num_allocated != - template_btl->template_frag_user.super.opal_list_length){ - opal_output(0, "btl template_frag_user: %d allocated %d returned \n", - template_btl->template_frag_user.fl_num_allocated, - template_btl->template_frag_user.super.opal_list_length); - } - OBJ_DESTRUCT(&template_btl->template_lock); OBJ_DESTRUCT(&template_btl->template_frag_eager); OBJ_DESTRUCT(&template_btl->template_frag_max);