SYNTAX

C Syntax

int MPI_Pready(int partition, MPI_Request request)

Fortran Syntax

USE MPI
! or the older form: INCLUDE 'mpif.h'
MPI_PREADY(PARTITION, REQUEST, IERROR)
    INTEGER PARTITION, REQUEST, IERROR

Fortran 2008 Syntax

USE mpi_f08
MPI_Pready(partition, request, ierror)
    INTEGER, INTENT(IN) :: partition
    TYPE(MPI_Request), INTENT(IN) :: request
    INTEGER, OPTIONAL, INTENT(OUT) :: ierror