MPI_Waitsome(3)            (10/24/1994)           MPI_Waitsome(3)



     NAME
          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
















     Page 1                                           (printed 3/8/95)