2004-01-25 02:17:43 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-03-19 22:01:09 +03:00
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-25 02:17:43 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Errhandler_c2f = PMPI_Errhandler_c2f
|
|
|
|
#endif
|
|
|
|
|
2004-04-20 22:50:43 +04:00
|
|
|
#if LAM_PROFILING_DEFINES
|
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-03-19 22:01:09 +03:00
|
|
|
|
|
|
|
MPI_Fint MPI_Errhandler_c2f(MPI_Errhandler errhandler)
|
|
|
|
{
|
|
|
|
/* Error checking */
|
|
|
|
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
if (NULL == errhandler ||
|
|
|
|
MPI_ERRHANDLER_NULL == errhandler ||
|
|
|
|
LAM_ERRHANDLER_TYPE_COMM != errhandler->eh_mpi_object_type) {
|
|
|
|
return LAM_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_ARG,
|
|
|
|
"MPI_Errhandler_c2f");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
return (MPI_Fint) errhandler->eh_f_to_c_index;
|
2004-01-25 02:17:43 +03:00
|
|
|
}
|