MPI_Waitany(3) (10/24/1994) MPI_Waitany(3)
NAME
MPI_Waitany - Waits for any specified send or receive to
complete
INPUT PARAMETERS
count
- list length (integer)
array_of_requests
- array of requests (array of handles)
OUTPUT PARAMETERS
index
- index of handle for operation that completed
(integer). In the range 0 to count-1. In Fortran, the
range is 1 to count.
status
- status object (Status)
SYNOPSIS
#include "mpi.h"
int MPI_Waitany(count, array_of_requests, index, status )
int count;
MPI_Request array_of_requests[];
int *index;
MPI_Status *status;
LOCATION
waitany.c
Page 1 (printed 3/8/95)