[This is preliminary documentation and is subject to change.]
Wait until all of the given MPI requests have completed before returning.
See WaitAll()()().
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.6.0.0 (0.6.0.0)
Syntax
| C# |
|---|
public static int MPI_Waitall( int count, int* array_of_requests, Unsafe..::.MPI_Status[] array_of_statuses ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function MPI_Waitall ( _ count As Integer, _ array_of_requests As Integer*, _ array_of_statuses As Unsafe..::.MPI_Status() _ ) As Integer |
| Visual C++ |
|---|
public: static int MPI_Waitall( int count, int* array_of_requests, array<Unsafe..::.MPI_Status>^ array_of_statuses ) |
Parameters
- count
- Type: System..::.Int32
The number of requests (and statuses).
- array_of_requests
- Type:
System..::.Int32
*
An array of MPI request objects to be completed.
- array_of_statuses
- Type: array<
MPI..::.Unsafe..::.MPI_Status
>[]()[]
An array of MPI status objects, to be filled in by the completed requests.