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