From 0871c5c4895628ca85c3dadad37d63a05810ac06 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Sat, 21 Feb 2015 16:38:17 -0500 Subject: [PATCH] This function is now useless. --- ompi/mca/pml/ob1/pml_ob1.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ompi/mca/pml/ob1/pml_ob1.c b/ompi/mca/pml/ob1/pml_ob1.c index eac927c489..3d38bd61b5 100644 --- a/ompi/mca/pml/ob1/pml_ob1.c +++ b/ompi/mca/pml/ob1/pml_ob1.c @@ -1029,16 +1029,3 @@ clean: } #endif /* OPAL_ENABLE_FT_CR */ -int mca_pml_ob1_com_btl_comp(const void *v1, const void *v2) -{ - const mca_pml_ob1_com_btl_t *b1 = (const mca_pml_ob1_com_btl_t *) v1; - const mca_pml_ob1_com_btl_t *b2 = (const mca_pml_ob1_com_btl_t *) v2; - - if(b1->bml_btl->btl_weight < b2->bml_btl->btl_weight) - return 1; - if(b1->bml_btl->btl_weight > b2->bml_btl->btl_weight) - return -1; - - return 0; -} -