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