
- Mark those who are still not yet implemented: - return an error - have a grep-able string indicating that they are not yet implemented - ensure every function checks for init/finalize - add more error checking to a bunch of functions - unify the error checking -- it reflected about 3 different [previous] error checking styles and MPI exception invocation styles This commit was SVN r1817.
39 строки
804 B
C
39 строки
804 B
C
/*
|
|
* $HEADERS$
|
|
*/
|
|
#include "ompi_config.h"
|
|
#include <stdio.h>
|
|
|
|
#include "mpi.h"
|
|
#include "mpi/c/bindings.h"
|
|
#include "runtime/runtime.h"
|
|
#include "errhandler/errhandler.h"
|
|
#include "communicator/communicator.h"
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
#pragma weak MPI_Comm_f2c = PMPI_Comm_f2c
|
|
#endif
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
|
#include "mpi/c/profile/defines.h"
|
|
#endif
|
|
|
|
static const char FUNC_NAME[] = "MPI_Comm_f2c";
|
|
|
|
|
|
MPI_Comm MPI_Comm_f2c(MPI_Fint comm)
|
|
{
|
|
size_t o_index= (size_t) comm;
|
|
|
|
if ( MPI_PARAM_CHECK ) {
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
|
|
|
if ( 0 > o_index ||
|
|
o_index >= ompi_pointer_array_get_size(&ompi_mpi_communicators)) {
|
|
return MPI_COMM_NULL;
|
|
}
|
|
}
|
|
|
|
return ompi_mpi_communicators.addr[o_index];
|
|
}
|