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

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

Adding compiled files

File size: 1.7 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_File_get_group 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_File_get_group\fP \- Returns a duplicate of the process group of a file.
6
7.SH SYNTAX
8.ft R
9.nf
10C Syntax
11    #include <mpi.h>
12    int MPI_File_get_group(MPI_File \fIfh\fP, MPI_Group \fI*group\fP)
13
14Fortran Syntax
15    INCLUDE 'mpif.h'
16    MPI_FILE_GET_GROUP(\fIFH\fP,\fI GROUP\fP, \fI IERROR\fP)
17                 INTEGER          FH, GROUP, IERROR
18
19.SH C++ Syntax
20.nf
21#include <mpi.h>
22MPI::Group MPI::File::Get_group() const
23
24.SH INPUT PARAMETER
25.ft R
26.TP 1i
27fh   
28File handle (handle).
29
30.SH OUTPUT PARAMETERS
31.TP 1i
32group
33Group that opened the file (handle).
34.TP 1i
35IERROR
36Fortran only: Error status (integer).
37
38.SH DESCRIPTION
39.ft R
40MPI_File_get_group returns a duplicate of the group of the communicator
41used to open the file associated with
42.I fh.
43The group is returned in
44.I group.
45The user is responsible for freeing
46.I group,
47using MPI_Group_free.
48
49.SH ERRORS
50Almost 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.
51.sp
52Before the error value is returned, the current MPI error handler is
53called. 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. 
54
Note: See TracBrowser for help on using the repository browser.