1
1

* silence dumb (and mostly useless) warning during cleanup

This commit was SVN r10280.
Этот коммит содержится в:
Brian Barrett 2006-06-09 21:09:53 +00:00
родитель cc99a63169
Коммит d5acb4e3cc

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

@ -521,8 +521,12 @@ mca_btl_portals_finalize(struct mca_btl_base_module_t *btl_base)
for (i = 0 ; i < OMPI_BTL_PORTALS_EQ_SIZE ; ++i) {
int ptl_ret = PtlEQFree(mca_btl_portals_module.portals_eq_handles[i]);
if (PTL_OK != ptl_ret) {
opal_output(mca_btl_portals_component.portals_output,
if (i != OMPI_BTL_PORTALS_EQ_SEND && PTL_EQ_IN_USE != ptl_ret) {
/* The PML isn't great about cleaning up after itself.
Ignore related errors. */
opal_output(mca_btl_portals_component.portals_output,
"Error freeing EQ %d: %d", i, ptl_ret);
}
}
}