SYNTAX
------

C Syntax
^^^^^^^^

.. code-block:: c

    int MPI_Request_get_status_some(int incount, const MPI_Request
        array_of_requests[], int* outcount, int array_of_indices[],
        MPI_Status array_of_statuses[])

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

.. code-block:: fortran

    USE MPI
    ! or the older form: INCLUDE 'mpif.h'
    MPI_REQUEST_GET_STATUS_SOME(INCOUNT, ARRAY_OF_REQUESTS, OUTCOUNT, ARRAY_OF_INDICES, ARRAY_OF_STATUSES, IERROR)
    	INTEGER INCOUNT, ARRAY_OF_REQUESTS(*), OUTCOUNT, ARRAY_OF_INDICES(*), ARRAY_OF_STATUSES(MPI_STATUS_SIZE, *), IERROR

Fortran 2008 Syntax
^^^^^^^^^^^^^^^^^^^

.. code-block:: fortran

    USE mpi_f08
    MPI_Request_get_status_some(incount, array_of_requests, outcount, array_of_indices, array_of_statuses, ierror)
    	INTEGER, INTENT(IN) :: incount
    	TYPE(MPI_Request), INTENT(IN) :: array_of_requests(incount)
    	INTEGER, INTENT(OUT) :: outcount, array_of_indices(*)
    	TYPE(MPI_Status) :: array_of_statuses(*)
    	INTEGER, OPTIONAL, INTENT(OUT) :: ierror
