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

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

Adding compiled files

File size: 2.1 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Errhandler_get 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Errhandler_get \fP \- Gets the error handler for a communicator -- use of this routine is deprecated.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Errhandler_get(MPI_Comm \fIcomm\fP, MPI_Errhandler\fI *errhandler\fP)
13
14.SH Fortran Syntax
15.nf
16INCLUDE 'mpif.h'
17MPI_ERRHANDLER_GET(\fICOMM, ERRHANDLER, IERROR\fP)
18        INTEGER \fICOMM, ERRHANDLER, IERROR\fP
19
20
21.SH INPUT PARAMETER
22.ft R
23.TP 1i
24comm
25Communicator to get the error handler from (handle).
26
27.SH OUTPUT PARAMETERS
28.ft R
29.TP 1i
30errhandler
31MPI error handler currently associated with communicator (handle).
32.ft R
33.TP 1i
34IERROR
35Fortran only: Error status (integer).
36
37.SH DESCRIPTION
38.ft R
39Note that use of this routine is \fIdeprecated\fP as of MPI-2. Please use MPI_Comm_get_errhandler instead.
40.sp
41This deprecated routine is not available in C++.
42.sp
43Returns in errhandler (a handle to) the error handler that is currently associated with communicator comm.
44.sp
45\fBExample:\fP A library function may register at its entry point the current error handler for a communicator, set its own private error handler for this communicator, and restore before exiting the previous error handler. 
46
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_Comm_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
55.ft R
56.sp
57MPI_Comm_create_errhandler
58.br
59MPI_Comm_get_errhandler
60.br
61MPI_Comm_set_errhandler
62
Note: See TracBrowser for help on using the repository browser.