60485ff95f
OMPI_* to OPAL_*. This allows opal layer to be used more independent from the whole of ompi. NOTE: 9 "svn mv" operations immediately follow this commit. This commit was SVN r21180.
90 строки
2.9 KiB
C
90 строки
2.9 KiB
C
/*
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. 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 "ompi/constants.h"
|
|
#include "ompi/mpi/f77/bindings.h"
|
|
#include "ompi/mpi/f77/f77_strings.h"
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILE_LAYER
|
|
#pragma weak PMPI_WIN_SET_NAME = mpi_win_set_name_f
|
|
#pragma weak pmpi_win_set_name = mpi_win_set_name_f
|
|
#pragma weak pmpi_win_set_name_ = mpi_win_set_name_f
|
|
#pragma weak pmpi_win_set_name__ = mpi_win_set_name_f
|
|
#elif OMPI_PROFILE_LAYER
|
|
OMPI_GENERATE_F77_BINDINGS (PMPI_WIN_SET_NAME,
|
|
pmpi_win_set_name,
|
|
pmpi_win_set_name_,
|
|
pmpi_win_set_name__,
|
|
pmpi_win_set_name_f,
|
|
(MPI_Fint *win, char *win_name, MPI_Fint *ierr, int name_len),
|
|
(win, win_name, ierr, name_len) )
|
|
#endif
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS
|
|
#pragma weak MPI_WIN_SET_NAME = mpi_win_set_name_f
|
|
#pragma weak mpi_win_set_name = mpi_win_set_name_f
|
|
#pragma weak mpi_win_set_name_ = mpi_win_set_name_f
|
|
#pragma weak mpi_win_set_name__ = mpi_win_set_name_f
|
|
#endif
|
|
|
|
#if ! OPAL_HAVE_WEAK_SYMBOLS && ! OMPI_PROFILE_LAYER
|
|
OMPI_GENERATE_F77_BINDINGS (MPI_WIN_SET_NAME,
|
|
mpi_win_set_name,
|
|
mpi_win_set_name_,
|
|
mpi_win_set_name__,
|
|
mpi_win_set_name_f,
|
|
(MPI_Fint *win, char *win_name, MPI_Fint *ierr, int name_len),
|
|
(win, win_name, ierr, name_len) )
|
|
#endif
|
|
|
|
|
|
#if OMPI_PROFILE_LAYER && ! OPAL_HAVE_WEAK_SYMBOLS
|
|
#include "ompi/mpi/f77/profile/defines.h"
|
|
#endif
|
|
|
|
void mpi_win_set_name_f(MPI_Fint *win, char *win_name, MPI_Fint *ierr,
|
|
int name_len)
|
|
{
|
|
int ret, c_err;
|
|
char *c_name;
|
|
MPI_Win c_win;
|
|
|
|
c_win = MPI_Win_f2c(*win);
|
|
|
|
/* Convert the fortran string */
|
|
|
|
if (OMPI_SUCCESS != (ret = ompi_fortran_string_f2c(win_name, name_len,
|
|
&c_name))) {
|
|
c_err = OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, ret,
|
|
"MPI_WIN_SET_NAME");
|
|
*ierr = OMPI_INT_2_FINT(c_err);
|
|
return;
|
|
}
|
|
|
|
/* Call the C function */
|
|
|
|
*ierr = OMPI_INT_2_FINT(MPI_Win_set_name(c_win, c_name));
|
|
|
|
/* Free the C name */
|
|
|
|
free(c_name);
|
|
}
|