MPI_Rsend_init 

Nazwa: 

MPI_Rsend_init - Tworzy uchwyt dla "przygotowanego" wysyłania; 

Wejściowe parametry: 

buf - początkowy adres buforu do wysłania;
count
- ilość elementów w buforze (integer);
datatype
- typ danych (uchwyt); 
dest
- rank procesu odbierającego (integer); 
tag
- identyfikator wiadomości (integer);
comm
- komunikator (uchwyt);

Wyjściowe parametry: 

request - kontekst wiadomości (uchwyt);

Uzycie:

#include "mpi.h"
int MPI_Rsend_init( buf, count, datatype, dest, tag, comm, request )
void *buf; int count;
MPI_Datatype datatype;
int dest;
int tag;
MPI_Comm comm;
MPI_Request *request;