SYNTAX
------

C Syntax
^^^^^^^^

.. code-block:: c

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

Fortran Syntax
^^^^^^^^^^^^^^

.. code-block:: fortran

    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
^^^^^^^^^^^^^^^^^^^

.. code-block:: fortran

    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
