1MPI_Win_call_errhandler(3) LAM/MPI MPI_Win_call_errhandler(3)
2
3
4
6 MPI_Win_call_errhandler - Invokes error handler assigned to the window
7 with the error code supplied.
8
10 #include <mpi.h>
11 int MPI_Win_call_errhandler(MPI_Win win, int errorcode)
12
13
15 win - window with error handler (handle)
16 errorcode
17 - error code (integer)
18
19
21 This function is currently not implemented in LAM/MPI. It will return
22 an MPI_ERR_OTHER run time error.
23
24
26 All MPI routines in Fortran (except for MPI_WTIME and MPI_WTICK ) have
27 an additional argument ierr at the end of the argument list. ierr is
28 an integer and has the same meaning as the return value of the routine
29 in C. In Fortran, MPI routines are subroutines, and are invoked with
30 the call statement.
31
32 All MPI objects (e.g., MPI_Datatype , MPI_Comm ) are of type INTEGER in
33 Fortran.
34
36 wcallerr.c
37
38
39
40LAM/MPI 7.1.2 2/23/2006 MPI_Win_call_errhandler(3)