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

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

Adding compiled files

File size: 1.9 KB
Line 
1.\"Copyright 2007-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Win_post 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Win_post\fP \- Starts an RMA exposure epoch for the local window associated with \fIwin\fP
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Win_post(MPI_Group \fIgroup\fP, int assert, MPI_Win \fIwin\fP)
13
14.SH Fortran Syntax
15.nf
16INCLUDE 'mpif.h'
17MPI_WIN_POST(\fIGROUP, ASSERT, WIN, IERROR\fP)
18        INTEGER GROUP, ASSERT, WIN, IERROR
19
20.SH C++ Syntax
21.nf
22#include <mpi.h>
23void MPI::Win::Post(const MPI::Group& group, int assert) const
24
25
26.SH INPUT PARAMETERS
27.ft R
28.TP 1i
29group
30The group of origin processes (handle)
31.TP 1i
32assert
33Program assertion (integer)
34.TP 1i
35win
36Window object (handle)
37
38.SH OUTPUT PARAMETERS
39.ft R
40.TP 1i
41IERROR
42Fortran only: Error status (integer).
43
44.SH DESCRIPTION
45
46Starts an RMA exposure epoch for the local window associated with \fIwin\fP. Only the processes belonging to \fIgroup\fP should access the window with RMA calls on \fIwin\fP during this epoch. Each process in \fIgroup\fP must issue a matching call to MPI_Win_start. MPI_Win_post does not block.
47
48.SH ERRORS
49Almost 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.
50.sp
51Before the error value is returned, the current MPI error handler is
52called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Win_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. 
53
54.SH SEE ALSO
55MPI_Win_start
56MPI_Win_wait
57.br
58
59
60
Note: See TracBrowser for help on using the repository browser.