/*D
   MPI_Request_get_status_some - Nondestructive test for the completion of some of the requests

Synopsis:
.vb
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)
.ve

Input Parameters:
+ incount - length of array_of_requests (non-negative integer)
- array_of_requests - array of requests (handle)

Output Parameters:
+ outcount - number of completed requests (integer)
. array_of_indices - array of indices of operations that completed (integer)
- array_of_statuses - array of status objects for operations that completed (Status)

.N ThreadSafe

.N Fortran

.N Errors
.N MPI_SUCCESS
.N MPI_ERR_ARG
.N MPI_ERR_COUNT
.N MPI_ERR_REQUEST
.N MPI_ERR_OTHER

D*/

