Skip to content
Snippets Groups Projects
Commit 6d1fd35a authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

small change

parent ca3dc581
No related branches found
No related tags found
No related merge requests found
......@@ -709,13 +709,21 @@ namespace ALUGrid
}
}
// if request exists, i.e. some messages have been sent
// if send request exists, i.e. some messages have been sent
if( _sendRequest )
{
// wait until all processes are done with receiving
MY_INT_TEST MPI_Waitall ( _sendLinks, _sendRequest, MPI_STATUSES_IGNORE);
alugrid_assert (test == MPI_SUCCESS);
}
// if recv request exists then wait for all messages to finish
if( _recvRequest )
{
// wait until all processes are done with receiving
MY_INT_TEST MPI_Waitall ( _recvLinks, _recvRequest, MPI_STATUSES_IGNORE);
alugrid_assert (test == MPI_SUCCESS);
}
}
// receive data implementation with given buffers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment