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