HP-MPI V2.3 for Linux Release Note

IN datatype type of each element (handle)
IN source rank of source or MPI_ANY_SOURCE (integer)
IN tag message tag or MPI_ANY_TAG (integer)
IN comm communicator (handle)
OUT request communication request (handle)
int MPI_RsendL(void* buf, MPI_Aint count, MPI_Datatype datatype, int dest, int
tag, MPI_Comm comm)
IN buf initial address of send buffer (choice)
IN count number of elements in send buffer
IN datatype datatype of each send buffer element (handle)
IN dest rank of destination
IN tag message tag
IN comm communicator (handle)
int MPI_Rsend_initL(void* buf, MPI_Aint count, MPI_Datatype datatype, int dest,
int tag, MPI_Comm comm, MPI_Request *request)
IN buf initial address of send buffer (choice)
IN count number of elements sent
IN datatype type of each element (handle)
IN dest rank of destination
IN tag message tag
IN comm communicator (handle)
OUT request communication request (handle)
int MPI_SendL(void* buf, MPI_Aint count, MPI_Datatype datatype, int dest, int
tag, MPI_Comm comm)
IN buf initial address of send buffer (choice)
IN count number of elements in send buffer
IN datatype datatype of each send buffer element (handle)
IN dest rank of destination
IN tag message tag
IN comm communicator (handle)
int MPI_Send_initL(void* buf, MPI_Aint count, MPI_Datatype datatype, int dest,
int tag, MPI_Comm comm, MPI_Request *request)
IN buf initial address of send buffer (choice)
IN count number of elements sent
IN datatype type of each element (handle)
IN dest rank of destination
IN tag message tag
IN comm communicator (handle)
OUT request communication request (handle)
A.1 Point-to-Point Communication 41