22 строки
408 B
C
22 строки
408 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include "mpi.h"
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
#pragma weak MPI_Errhandler_set = PMPI_Errhandler_set
|
|
#endif
|
|
|
|
|
|
int MPI_Errhandler_set(MPI_Comm comm, MPI_Errhandler errhandler)
|
|
{
|
|
/* This is a deprecated -- just turn around and call the real
|
|
function */
|
|
|
|
return MPI_Comm_set_errhandler(comm, errhandler);
|
|
}
|