MPI_Waitsome

--- Waits for some given communications to complete

Input Parameters

incount
length of array_of_requests (integer)
array_of_requests
array of requests (array of handles)

Output Parameters

outcount
number of completed requests (integer)
array_of_indices
array of indices of operations that completed (array of integers)
array_of_statuses
array of status objects for operations that completed (array of Status)

Notes

The array of indicies are in the range 0 to incount - 1 for C and in the range 1 to incount for Fortran.

Synopsis


#include "mpi.h"
int MPI_Waitsome( incount, array_of_requests, outcount, array_of_indices, 
    array_of_statuses )
int         incount, *outcount, array_of_indices[];
MPI_Request array_of_requests[];
MPI_Status  array_of_statuses[];

Location: waitsome.c