Neutral Binding
MPI_WAITALL( count, array_of_requests, array_of_statuses) [ IN count] lists length (integer) [ INOUT array_of_requests] array of requests (array of handles) [ OUT array_of_statuses] array of status objects (array of Status)
C Binding
int MPI_Waitall(int count, MPI_Request *array_of_requests, MPI_Status *array_of_statuses)
FORTRAN Binding
MPI_WAITALL(COUNT, ARRAY_OF_REQUESTS, ARRAY_OF_STATUSES, IERROR) INTEGER COUNT, ARRAY_OF_REQUESTS(*), ARRAY_OF_STATUSES(MPI_STATUS_SIZE,*), IERROR
C++ Binding (in the MPI:: namespace)
static void Request::Waitall(int count, Request array_of_requests[], Status array_of_statuses[])
static void Request::Waitall(int count, Request array_of_requests[])
|
|