1
1
openmpi/src/mpi/c/errhandler_get.c

22 строки
410 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_get = PMPI_Errhandler_get
#endif
int MPI_Errhandler_get(MPI_Comm comm, MPI_Errhandler *errhandler)
{
/* This is a deprecated -- just turn around and call the real
function */
return MPI_Comm_get_errhandler(comm, errhandler);
}