[This is preliminary documentation and is subject to change.]
Waits until any of the given MPI requests completes before returning.
See WaitAny()()().
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.8.0.0 (0.8.0.0)
Syntax
| C# |
|---|
public static int MPI_Waitany( int count, int[] array_of_requests, out int index, out Unsafe..::.MPI_Status status ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function MPI_Waitany ( _ count As Integer, _ array_of_requests As Integer(), _ <OutAttribute> ByRef index As Integer, _ <OutAttribute> ByRef status As Unsafe..::.MPI_Status _ ) As Integer |
| Visual C++ |
|---|
public: static int MPI_Waitany( int count, array<int>^ array_of_requests, [OutAttribute] int% index, [OutAttribute] Unsafe..::.MPI_Status% status ) |
Parameters
- count
- Type: System..::.Int32
The number of requests in array_of_requests.
- array_of_requests
- Type: array<
System..::.Int32
>[]()[]
An array of MPI request objects.
- index
- Type:
System..::.Int32
%
Receives the index of the request that completed.
- status
- Type:
MPI..::.Unsafe..::.MPI_Status
%
Receives the status of the completed request.