MPI_Testany(3)             (10/24/1994)            MPI_Testany(3)



     NAME
          MPI_Testany - Tests for completion of any previdously
          initiated communication


     INPUT PARAMETERS
          count
               - list length (integer)
          array_of_requests
               - array of requests (array of handles)


     OUTPUT PARAMETERS
          index
               - index of operation that completed, or MPI_UNDEFINED
               if none completed (integer)
          flag - true if one of the operations is complete (logical)
          status
               - status object (Status)

     SYNOPSIS
          #include "mpi.h"
          int MPI_Testany( count, array_of_requests, index, flag, status )
          int         count;
          MPI_Request array_of_requests[];
          int         *index, *flag;
          MPI_Status  *status;



     LOCATION
           testany.c























     Page 1                                           (printed 3/8/95)