Fortran example: Receive
integer status(MPI_STATUS_SIZE) An array to store status of received information
integer mpierr, count, datatype, source, tag, comm
source = MPI_ANY_SOURCE accept any source processor
tag = MPI_ANY_TAG accept any message tag
call MPI_RECV (recvbuf, count, datatype, source, tag, comm, status, mpierr)
- Note source and tag can be wild-carded