1
1

Construct the convertor. It's not really required, but it's not in the

critical path anyway. At least in debug mode we get nice informations about
where the convertor was created.

This commit was SVN r12549.
Этот коммит содержится в:
George Bosilca 2006-11-10 20:55:06 +00:00
родитель 858ab24e8e
Коммит a38cd366d7

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

@ -70,6 +70,7 @@ mca_pml_cm_thin_recv_request_construct(mca_pml_cm_thin_recv_request_t* recvreq)
recvreq->req_base.req_ompi.req_free = mca_pml_cm_thin_recv_request_free;
recvreq->req_base.req_ompi.req_cancel = mca_pml_cm_cancel;
recvreq->req_base.req_pml_type = MCA_PML_CM_REQUEST_RECV_THIN;
OBJ_CONSTRUCT( &(recvreq->req_base.req_convertor), ompi_convertor_t );
}
@ -82,10 +83,9 @@ mca_pml_cm_hvy_recv_request_construct(mca_pml_cm_hvy_recv_request_t* recvreq)
recvreq->req_base.req_ompi.req_free = mca_pml_cm_hvy_recv_request_free;
recvreq->req_base.req_ompi.req_cancel = mca_pml_cm_cancel;
recvreq->req_base.req_pml_type = MCA_PML_CM_REQUEST_RECV_HEAVY;
OBJ_CONSTRUCT( &(recvreq->req_base.req_convertor), ompi_convertor_t );
}
OBJ_CLASS_INSTANCE(mca_pml_cm_thin_recv_request_t,
mca_pml_cm_request_t,
mca_pml_cm_thin_recv_request_construct,