1MPIO_Wait(3) MPI-2 MPIO_Wait(3)
2
3
4
6 MPIO_Wait - Waits for the completion of a nonblocking read or write
7
9 #include "mpi.h"
10 int MPIO_Wait(MPIO_Request *request, MPI_Status *status)
11
13 request
14 - request object (handle)
15
16
18 status - status object (Status)
19
20
22 All MPI routines in Fortran (except for 'MPI_WTIME' and 'MPI_WTICK')
23 have an additional argument 'ierr' at the end of the argument list.
24 the routine in C. In Fortran, MPI routines are subroutines and are
25 invoked with the 'call' statement.
26
27 All MPI objects (e.g., 'MPI_Datatype', 'MPI_Comm', 'MPI_File') are of
28 type 'INTEGER' in Fortran.
29
30
31
32 2/5/1998 MPIO_Wait(3)