3.2.1. Blocking send


Up: Blocking Send and Receive Operations Next: Message data Previous: Blocking Send and Receive Operations

The syntax of the blocking send operation is given below.

MPI_SEND(buf, count, datatype, dest, tag, comm)
IN bufinitial address of send buffer (choice)
IN countnumber of elements in send buffer (nonnegative integer)
IN datatypedatatype of each send buffer element (handle)
IN destrank of destination (integer)
IN tagmessage tag (integer)
IN commcommunicator (handle)

int MPI_Send(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)

MPI_SEND(BUF, COUNT, DATATYPE, DEST, TAG, COMM, IERROR)
<type> BUF(*)
INTEGER COUNT, DATATYPE, DEST, TAG, COMM, IERROR

The blocking semantics of this call are described in Sec. Communication Modes .



Up: Blocking Send and Receive Operations Next: Message data Previous: Blocking Send and Receive Operations


Return to MPI 1.1 Standard Index
Return to MPI 2.0 Standard Index
Return to MPI Forum Home Page

MPI-1.1 of June 12, 1995
HTML Generated on November 1, 2000