1
1

Abort when unknown header is received.

This commit was SVN r24030.
Этот коммит содержится в:
Rolf vandeVaart 2010-11-10 19:13:56 +00:00
родитель da9c936ba0
Коммит e5e301b564

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

@ -1970,9 +1970,10 @@ void mca_pml_bfo_update_eager_bml_btl_recv_ctl(mca_bml_base_btl_t** bml_btl,
type = "PUT"; type = "PUT";
break; break;
default: default:
opal_output(mca_pml_bfo_output, /* In theory, this can never happen. */
"Unable to update the BTL. Drop the update."); opal_output(0, "%s:%d FATAL ERROR, unknown header (hdr=%d)",
return; __FILE__, __LINE__, common->hdr_type);
orte_errmgr.abort(-1, NULL);
} }
mca_pml_bfo_find_recvreq_eager_bml_btl(bml_btl, btl, recvreq, type); mca_pml_bfo_find_recvreq_eager_bml_btl(bml_btl, btl, recvreq, type);