1
1
This commit was SVN r3520.
Этот коммит содержится в:
Tim Woodall 2004-11-04 23:36:48 +00:00
родитель 6b0b4e0aee
Коммит a84f9d0a7d

@ -238,7 +238,7 @@ mca_ptl_base_check_specific_and_wild_receives_for_match(
/* remove descriptor from specific receive list */ /* remove descriptor from specific receive list */
ompi_list_remove_item((pml_comm->c_specific_receives)+frag_src, ompi_list_remove_item((pml_comm->c_specific_receives)+frag_src,
(ompi_list_item_t *)specific_recv); (ompi_list_item_t *)specific_recv);
return return_match; break;
} }
/* /*
@ -251,11 +251,11 @@ mca_ptl_base_check_specific_and_wild_receives_for_match(
* If that was the last specific irecv, process the * If that was the last specific irecv, process the
* rest of the wild ones. * rest of the wild ones.
*/ */
if (specific_recv == (mca_pml_base_recv_request_t *) \ if (specific_recv == (mca_pml_base_recv_request_t *)
ompi_list_get_end((pml_comm->c_specific_receives)+frag_src) ) \ ompi_list_get_end((pml_comm->c_specific_receives)+frag_src) )
{ {
MCA_PTL_BASE_CHECK_WILD_RECEIVES_FOR_MATCH(frag_header, pml_comm, return_match); MCA_PTL_BASE_CHECK_WILD_RECEIVES_FOR_MATCH(frag_header, pml_comm, return_match);
return return_match; break;
} }
/* /*
* Get the sequence number for this recv, and go * Get the sequence number for this recv, and go
@ -264,7 +264,7 @@ mca_ptl_base_check_specific_and_wild_receives_for_match(
specific_recv_seq = specific_recv->req_base.req_sequence; specific_recv_seq = specific_recv->req_base.req_sequence;
} }
} }
return NULL; return return_match;
} }