source: proiecte/hpl/openmpi_compiled/share/man/man3/MPI_File_write_all_end.3 @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 2.5 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_File_write_all_end 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_File_write_all_end\fP \- Writes a file starting at the locations specified by individual file pointers; ending part of a split collective routine (blocking).
6
7.SH SYNTAX
8.ft R
9.nf
10C Syntax
11    #include <mpi.h>
12    int MPI_File_write_all_end(MPI_File \fIfh\fP, void \fI*buf\fP, MPI_Status \fI*status\fP)
13
14Fortran Syntax
15    INCLUDE 'mpif.h'
16    MPI_FILE_WRITE_ALL_END(\fIFH\fP, \fIBUF\fP, \fISTATUS\fP,\fI IERROR\fP)
17                <type>          BUF(*)
18                INTEGER         FH, STATUS, IERROR
19
20.SH C++ Syntax
21.nf
22#include <mpi.h>
23void MPI::File::Write_all_end(const void* \fIbuf\fP, MPI::Status& \fIstatus\fP)
24
25void MPI::File::Write_all_end(const void* \fIbuf\fP)
26
27.SH INPUT/OUTPUT PARAMETER
28.ft R
29.TP 1i
30fh   
31File handle (handle).
32
33.SH INPUT PARAMETER
34.ft R
35.TP 1i
36buf
37Initial address of buffer (choice).
38
39.SH OUTPUT PARAMETERS
40.ft R
41.TP 1i
42status
43Status object (status).
44.TP 1i
45IERROR
46Fortran only: Error status (integer).
47
48.SH DESCRIPTION
49.ft R
50MPI_File_write_all_end is the ending part of a split collective routine that stores the
51number of elements actually written into the file associated with
52.I fh
53from the user's buffer
54.I buf
55in
56.I status.
57MPI_File_write_all_end blocks until the operation initiated by MPI_File_write_all_begin completes. The data is written into those parts of the
58file specified by the current view. All other fields of
59.I status
60are undefined.
61
62.SH NOTES
63.ft R
64All the nonblocking collective routines for data access are "split" into two routines, each with _begin or _end as a suffix. These split collective routines are subject to the semantic rules described in Section 9.4.5 of the MPI-2 standard.
65
66.SH ERRORS
67Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object.
68.sp
69Before the error value is returned, the current MPI error handler is
70called. For MPI I/O function errors, the default error handler is set to MPI_ERRORS_RETURN. The error handler may be changed with MPI_File_set_errhandler; the predefined error handler MPI_ERRORS_ARE_FATAL may be used to make I/O errors fatal. Note that MPI does not guarantee that an MPI program can continue past an error. 
Note: See TracBrowser for help on using the repository browser.