1
1
openmpi/src/mpi/c/errhandler_set.c
Jeff Squyres f83a8fb659 Some more errhandler stuff, including updated invocation macros in
errhandler/errhandler.h.

This commit was SVN r944.
2004-03-19 17:29:39 +00:00

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);
}