79a2d8b0a1
am sure that some will have to be added back in as functionality is added (like for comm_spawn.c), but for now might as well compile faster :) This commit was SVN r2780.
41 строка
990 B
C
41 строка
990 B
C
/*
|
|
* $HEADERS$
|
|
*/
|
|
#include "ompi_config.h"
|
|
#include <stdio.h>
|
|
|
|
#include "mpi.h"
|
|
#include "mpi/c/bindings.h"
|
|
#include "communicator/communicator.h"
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
#pragma weak MPI_Comm_test_inter = PMPI_Comm_test_inter
|
|
#endif
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
|
#include "mpi/c/profile/defines.h"
|
|
#endif
|
|
|
|
static const char FUNC_NAME[] = "MPI_Comm_test_inter";
|
|
|
|
|
|
int MPI_Comm_test_inter(MPI_Comm comm, int *flag) {
|
|
|
|
if ( MPI_PARAM_CHECK ) {
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
|
|
|
if ( MPI_COMM_NULL == comm || ompi_comm_invalid ( comm ) ) {
|
|
return OMPI_ERRHANDLER_INVOKE ( MPI_COMM_WORLD, MPI_ERR_COMM,
|
|
FUNC_NAME);
|
|
}
|
|
|
|
if ( NULL == flag ) {
|
|
return OMPI_ERRHANDLER_INVOKE ( comm, MPI_ERR_ARG,
|
|
FUNC_NAME);
|
|
}
|
|
}
|
|
|
|
*flag = (comm->c_flags & OMPI_COMM_INTER);
|
|
return MPI_SUCCESS;
|
|
}
|