SYNTAX

C Syntax

int MPI_Pready_list(int length, const int array_of_partitions[],
    MPI_Request request)

Fortran Syntax

USE MPI
! or the older form: INCLUDE 'mpif.h'
MPI_PREADY_LIST(LENGTH, ARRAY_OF_PARTITIONS, REQUEST, IERROR)
    INTEGER LENGTH, ARRAY_OF_PARTITIONS(*), REQUEST, IERROR

Fortran 2008 Syntax

USE mpi_f08
MPI_Pready_list(length, array_of_partitions, request, ierror)
    INTEGER, INTENT(IN) :: length, array_of_partitions(length)
    TYPE(MPI_Request), INTENT(IN) :: request
    INTEGER, OPTIONAL, INTENT(OUT) :: ierror