2004-01-24 23:17:43 +00:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-01-24 23:17:43 +00:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Errhandler_create = PMPI_Errhandler_create
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_Errhandler_create(MPI_Handler_function *function,
|
2004-03-19 18:01:03 +00:00
|
|
|
MPI_Errhandler *errhandler)
|
|
|
|
{
|
|
|
|
/* This is a deprecated -- just turn around and call the real
|
|
|
|
function */
|
|
|
|
|
|
|
|
return MPI_Comm_create_errhandler(function, errhandler);
|
2004-01-24 23:17:43 +00:00
|
|
|
}
|