1
1
openmpi/ompi/mpi/f77/base/f90_accessors.c
Jeff Squyres 477cdb0b62 Had to abondon the first approach from r19040: it caused problems with
"make distclean".  It's not clear whether it's an Automake bug or
whether what I did simply is not supported (I've got pending mail into
Ralf W. asking about it).  The short version is that during "make
distclean", ompi/mpi/f77/Makefile would rm -rf ompi/mpi/f77/.deps.
But ompi/Makefile still include's some .Plo files from that directory,
so Bad Things happened when "make distclean" unrolled from the
ompi/mpi/f77 dir back up to the ompi/ dir.

So I went with George's original suggestion and moved the f77 "base"
files in question into a new directory: ompi/mpi/f77/base and put a
Makefile.include in there.  That way, this directory is not traversed
twice by distclean, and .deps is only removed when it is supposed to
be.  Maybe we'll be able to do it a little better someday, but that's
the way it is now.

I'll check this with a fresh checkout once this is committed to SVN as
well; some of these kinds of problems don't show up until you do a
build from a completely fresh SVN checkout.

This commit was SVN r19054.

The following SVN revision numbers were found above:
  r19040 --> open-mpi/ompi@9f4d4c4312
2008-07-26 20:38:30 +00:00

91 строка
2.5 KiB
C

/*
* Copyright (c) 2004-2005 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 (c) 2006 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "ompi/mpi/f77/bindings.h"
/* These functions solely exist so that the F90 bindings can call a C
function from Fortran, so we provide all 4 variants. Specifically,
the F90 bindings for MPI_WTICK and MPI_WTIME need to call the
back-end C functions to effect the functionality -- they cannot
call the back-end F77 functions because there is an overload of
names and types. So we create these new functions with different
names (MPI_WTICK_F90 and MPI_WTIME_F90 vs. MPI_WTICK and MPI_WTIME)
so that the F90 bindings can call these functions directly.
Rather than try to be clever with weak symbols, especially since
the function implementations are 1 line long, it just seemed
simpler to provide 4 copies of each [1 line] function. */
OMPI_DECLSPEC void MPI_WTIME_F90(double *w);
OMPI_DECLSPEC void mpi_wtime_f90(double *w);
OMPI_DECLSPEC void mpi_wtime_f90_(double *w);
OMPI_DECLSPEC void mpi_wtime_f90__(double *w);
OMPI_DECLSPEC void MPI_WTICK_F90(double *w);
OMPI_DECLSPEC void mpi_wtick_f90(double *w);
OMPI_DECLSPEC void mpi_wtick_f90_(double *w);
OMPI_DECLSPEC void mpi_wtick_f90__(double *w);
/**********************************************************************/
void MPI_WTIME_F90(double *w)
{
*w = MPI_Wtime();
}
void mpi_wtime_f90(double *w)
{
*w = MPI_Wtime();
}
void mpi_wtime_f90_(double *w)
{
*w = MPI_Wtime();
}
void mpi_wtime_f90__(double *w)
{
*w = MPI_Wtime();
}
/**********************************************************************/
void MPI_WTICK_F90(double *w)
{
*w = MPI_Wtick();
}
void mpi_wtick_f90(double *w)
{
*w = MPI_Wtick();
}
void mpi_wtick_f90_(double *w)
{
*w = MPI_Wtick();
}
void mpi_wtick_f90__(double *w)
{
*w = MPI_Wtick();
}