Hi,
Suppose process 0 does the following
MPI_Irecv(...req)
MPI_Cancel(req)
MPI_Recv
and process 1 does
MPI_Send
MPI_Send
Does process 0 receives the data from the first or the second MPI_Send?
(I'd tend to say the second, but I'd like a confirmation).