MPI_Recv(3)                (10/24/1994)               MPI_Recv(3)



     NAME
          MPI_Recv - Basic receive


     OUTPUT PARAMETER
          buf  - initial address of receive buffer (choice)
          status
               - status object (Status)


     INPUT PARAMETERS
          count
               - number of elements in receive buffer (integer)
          datatype
               - datatype of each receive buffer element (handle)
          source
               - rank of source (integer)
          tag  - message tag (integer)
          comm - communicator (handle)


     SYNOPSIS
          #include "mpi.h"
          int MPI_Recv( buf, count, datatype, source, tag, comm, status )
          void             *buf;
          int              count, source, tag;
          MPI_Datatype     datatype;
          MPI_Comm         comm;
          MPI_Status       *status;



     LOCATION
           recv.c





















     Page 1                                           (printed 3/8/95)