1
1

* initialize send request convertor with the correct type (convertor instead

of request).  This fixes at least the bug with NetPIPE in 64bit land that
  Troy was seeing. 

This commit was SVN r7904.
Этот коммит содержится в:
Brian Barrett 2005-10-27 23:08:27 +00:00
родитель 4a15761732
Коммит bf67c9387b

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

@ -77,7 +77,7 @@ static void mca_pml_ob1_send_request_construct(mca_pml_ob1_send_request_t* req)
req->req_send.req_base.req_ompi.req_fini = mca_pml_ob1_send_request_fini;
req->req_send.req_base.req_ompi.req_free = mca_pml_ob1_send_request_free;
req->req_send.req_base.req_ompi.req_cancel = mca_pml_ob1_send_request_cancel;
OBJ_CONSTRUCT(&req->req_send.req_convertor, ompi_request_t);
OBJ_CONSTRUCT(&req->req_send.req_convertor, ompi_convertor_t);
}
static void mca_pml_ob1_send_request_destruct(mca_pml_ob1_send_request_t* req)