1
1

Revert "This function is now useless."

This reverts commit 0871c5c489.
Этот коммит содержится в:
George Bosilca 2015-02-26 17:54:46 -05:00
родитель 7f90cedf23
Коммит 3fd8dc099d

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

@ -1029,3 +1029,16 @@ 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;
}