MPI_Comm_errhandler_function callback function
MPI_Comm_errhandler_function is a placeholder for the application-defined function name.
Syntax
void MPI_Comm_errhandler_function(
_In_ MPI_Comm *comm,
_Inout_ int *errcode,
...
);
Parameters
comm [in]
Communicator in use.errcode [in, out]
Error code to be returned by the MPI routine that raised the error. If the routine would have returned MPI_ERR_IN_STATUS, it is the error code returned in the status for the request that caused the error handler to be invoked....
The remaining arguments are “varargs” arguments whose number and meaning is implementation-dependent.
Fortran
SUBROUTINE COMM_ERRHANDLER_FUNCTION(COMM, ERROR_CODE)
INTEGER COMM, ERROR_CODE
Remarks
The placeholder name of this function, MPI_Comm_errhandler_fn, is deprecated in the MPI-2.2 standard and replaced by MPI_Comm_errhandler_function. The function prototype is unchanged.
Requirements
Product |
HPC Pack 2012 MS-MPI Redistributable Package, HPC Pack 2008 R2 MS-MPI Redistributable Package, HPC Pack 2008 MS-MPI Redistributable Package or HPC Pack 2008 Client Utilities |
Header |
Mpi.h; Mpif.h |