4ab17f019b
This commit was SVN r6269.
75 строки
2.3 KiB
C
75 строки
2.3 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "mpi/f77/bindings.h"
|
|
#include "group/group.h"
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILE_LAYER
|
|
#pragma weak PMPI_GROUP_FREE = mpi_group_free_f
|
|
#pragma weak pmpi_group_free = mpi_group_free_f
|
|
#pragma weak pmpi_group_free_ = mpi_group_free_f
|
|
#pragma weak pmpi_group_free__ = mpi_group_free_f
|
|
#elif OMPI_PROFILE_LAYER
|
|
OMPI_GENERATE_F77_BINDINGS (PMPI_GROUP_FREE,
|
|
pmpi_group_free,
|
|
pmpi_group_free_,
|
|
pmpi_group_free__,
|
|
pmpi_group_free_f,
|
|
(MPI_Fint *group, MPI_Fint *ierr),
|
|
(group, ierr) )
|
|
#endif
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS
|
|
#pragma weak MPI_GROUP_FREE = mpi_group_free_f
|
|
#pragma weak mpi_group_free = mpi_group_free_f
|
|
#pragma weak mpi_group_free_ = mpi_group_free_f
|
|
#pragma weak mpi_group_free__ = mpi_group_free_f
|
|
#endif
|
|
|
|
#if ! OMPI_HAVE_WEAK_SYMBOLS && ! OMPI_PROFILE_LAYER
|
|
OMPI_GENERATE_F77_BINDINGS (MPI_GROUP_FREE,
|
|
mpi_group_free,
|
|
mpi_group_free_,
|
|
mpi_group_free__,
|
|
mpi_group_free_f,
|
|
(MPI_Fint *group, MPI_Fint *ierr),
|
|
(group, ierr) )
|
|
#endif
|
|
|
|
|
|
#if OMPI_PROFILE_LAYER && ! OMPI_HAVE_WEAK_SYMBOLS
|
|
#include "mpi/f77/profile/defines.h"
|
|
#endif
|
|
|
|
void mpi_group_free_f(MPI_Fint *group, MPI_Fint *ierr)
|
|
{
|
|
ompi_group_t *c_group;
|
|
|
|
/* Make the fortran to c representation conversion */
|
|
|
|
c_group = MPI_Group_f2c(*group);
|
|
*ierr = OMPI_INT_2_FINT(MPI_Group_free( &c_group ));
|
|
|
|
/* This value comes from the MPI_GROUP_NULL value in mpif.h. Do not
|
|
change without consulting mpif.h! */
|
|
|
|
if (MPI_SUCCESS == OMPI_FINT_2_INT(*ierr)) {
|
|
*group = 0;
|
|
}
|
|
}
|