Changes between Version 3 and Version 4 of mpich/MPI_Recv
- Timestamp:
- Jul 23, 2008, 11:24:09 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
mpich/MPI_Recv
v3 v4 1 1 = MPI_Recv = 2 2 Basic receive 3 3 4 = Synopsis = 4 5 {{{ … … 6 7 int MPI_Recv( void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status ) 7 8 }}} 9 8 10 = Output Parameters = 9 11 {{{ … … 20 22 comm communicator (handle) 21 23 }}} 24 22 25 = Notes = 23 26 The count argument indicates the maximum length of a message; the actual number can be determined with MPI_Get_count.