1
1

Fix one warning about extremely long lines (due to macro expansion)

This commit was SVN r17247.
Этот коммит содержится в:
Aurelien Bouteiller 2008-01-26 00:38:33 +00:00
родитель 9b1b27fa8d
Коммит b5d44261a0

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

@ -23,12 +23,15 @@ OBJ_CLASS_INSTANCE(mca_vprotocol_pessimist_send_request_t, mca_pml_base_request_
static void vprotocol_pessimist_request_construct(mca_pml_base_request_t *req)
{
V_OUTPUT_VERBOSE(250, "pessimist:\treq\tnew\treq=%p\tPreq=%p (aligned to %p)", (void *) req, (void *) VPESSIMIST_REQ(req), (void *) &(VPESSIMIST_REQ(req)->pml_req_free));
mca_vprotocol_pessimist_request_t *preq;
preq = VPESSIMIST_REQ(req);
V_OUTPUT_VERBOSE(250, "pessimist:\treq\tnew\treq=%p\tPreq=%p (aligned to %p)", (void *) req, (void *) preq, (void *) &preq->pml_req_free);
req->req_ompi.req_status.MPI_SOURCE = -1; /* no matching made flag */
VPESSIMIST_REQ(req)->pml_req_free = req->req_ompi.req_free;
VPESSIMIST_REQ(req)->event = NULL;
/* VPESSIMIST_REQ(req)->sb_reqs[0] = NULL;*/
assert(VPESSIMIST_REQ(req)->pml_req_free == req->req_ompi.req_free); /* detection of aligment issues on different arch */
preq->pml_req_free = req->req_ompi.req_free;
preq->event = NULL;
/* preq->sb_reqs[0] = NULL;*/
assert(preq->pml_req_free == req->req_ompi.req_free); /* detection of aligment issues on different arch */
req->req_ompi.req_free = mca_vprotocol_pessimist_request_free;
}