1MPI_File_write_ordered(3) MPI-2 MPI_File_write_ordered(3)
2
3
4
6 MPI_File_write_ordered - Collective write using shared file pointer
7
9 #include "mpi.h"
10 int MPI_File_write_ordered(MPI_File fh, void *buf, int count,
11 MPI_Datatype datatype, MPI_Status *status)
12
14 fh - file handle (handle)
15 buf - initial address of buffer (choice)
16 count - number of elements in buffer (nonnegative integer)
17 datatype
18 - datatype of each buffer element (handle)
19
20
22 status - status object (Status)
23
24
26 All MPI routines in Fortran (except for 'MPI_WTIME' and 'MPI_WTICK')
27 have an additional argument 'ierr' at the end of the argument list.
28 the routine in C. In Fortran, MPI routines are subroutines and are
29 invoked with the 'call' statement.
30
31 All MPI objects (e.g., 'MPI_Datatype', 'MPI_Comm', 'MPI_File') are of
32 type 'INTEGER' in Fortran.
33
34
35
36 9/3/1998 MPI_File_write_ordered(3)