1MPI_Errhandler_get(3) LAM/MPI MPI_Errhandler_get(3)
2
3
4
6 MPI_Errhandler_get - Gets the error handler for a communicator
7
9 #include <mpi.h>
10 int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhdl)
11
13 comm - communicator to get the error handler from (handle)
14
15
17 errhandler
18 - MPI error handler currently associated with communicator (han‐
19 dle)
20
21
22
24 This function is deprecated. It has been replaced with an MPI-2 func‐
25 tion (see the "See also" section, below), which provides the same func‐
26 tionality. This function is (or effectively is) a wrapper to the
27 replacement function, anyway. User programs should use the MPI-2
28 replacement function instead of this function.
29
30 Some functions are deprecated because their names did not conform to
31 the stricter naming conventions of MPI-2; others are deprecated because
32 they have been replaced with more flexible functionality.
33
34
36 MPI_Comm_get_errhandler
37
38
40 For more information, please see the official MPI Forum web site, which
41 contains the text of both the MPI-1 and MPI-2 standards. These docu‐
42 ments contain detailed information about each MPI function (most of
43 which is not duplicated in these man pages).
44
45 http://www.mpi-forum.org/
46
47
48
50 The LAM Team would like the thank the MPICH Team for the handy program
51 to generate man pages ("doctext" from ftp://ftp.mcs.anl.gov/pub/sow‐
52 ing/sowing.tar.gz ), the initial formatting, and some initial text for
53 most of the MPI-1 man pages.
54
56 errget.c
57
58
59
60LAM/MPI 7.1.2 2/23/2006 MPI_Errhandler_get(3)