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

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

Adding compiled files

File size: 1.8 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Comm_call_errhandler 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5
6\fBMPI_Comm_call_errhandler\fP \- Passes the supplied error code to the
7error handler assigned to a communicator
8
9.SH SYNTAX
10.ft R
11
12.SH C Syntax
13.nf
14#include <mpi.h>
15int MPI_Comm_call_errhandler(MPI_Comm \fIcomm\fP, int \fIerrorcode\fP)
16
17.SH Fortran Syntax
18.nf
19INCLUDE 'mpif.h'
20MPI_COMM_CALL_ERRHANDLER(\fICOMM, ERRORCODE, IERROR\fP)
21        INTEGER \fICOMM, ERRORCODE, IERROR\fP
22
23.SH C++ Syntax
24.nf
25#include <mpi.h>
26void MPI::Comm::Call_errhandler(int \fIerrorcode\fP) const
27
28.SH INPUT PARAMETER
29.ft R
30.TP 1.4i
31comm
32communicator with error handler (handle).
33.ft R
34.TP 1.4i
35errorcode
36error code (integer).
37
38.SH OUTPUT PARAMETERS
39.ft R
40.TP 1.4i
41IERROR
42Fortran only: Error status (integer).
43
44.SH DESCRIPTION
45.ft R
46This function invokes the error handler assigned to the communicator
47\fIcomm\fP with the supplied error code \fIerrorcode\fP. If the error
48handler was successfully called, the process is not aborted, and the
49error handler returns, this function returns MPI_SUCCESS.
50
51.SH NOTES
52.ft R
53Users should note that the default error handler is
54MPI_ERRORS_ARE_FATAL. Thus, calling this function will abort the
55processes in \fIcomm\fP if the default error handler has not been
56changed.
57
58.SH ERRORS
59.ft R
60Almost all MPI routines return an error value; C routines as
61the value of the function and Fortran routines in the last argument. C++
62functions do not return errors. If the default error handler is set to
63MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism
64will be used to throw an MPI:Exception object.
65.sp
66See the MPI man page for a full list of MPI error codes.
67
68.SH SEE ALSO
69.ft R
70.nf
71MPI_Comm_create_errhandler
72MPI_Comm_set_errhandler
73
Note: See TracBrowser for help on using the repository browser.