NAME
MPI_Request_f2c - Convert a FORTRAN MPI request into a C MPI request SYNOPSIS
#include <mpi.h>
MPI_Request MPI_Request_f2c(MPI_Fint rf );
#include <pmpi.h>
MPI_Request PMPI_Request_f2c(MPI_Fint rf );
INPUT PARAMETER
rf - request handle from FORTRAN (handle)
RETURN VALUE
C request handle (handle)
DESCRIPTION
The MPI_Request_f2c() function is used to convert a FORTRAN integer-sized request handle rf , into a C MPI_Request handle. This function will never raise an error.
Since this function is compiled inline for performance reasons, a profiler will not be able to hook it. (In this MPI implementation, the C and FORTRAN handles are identical for this type of handle.) PMPI_Request_f2c() is the profiling version of this function.
SEE ALSO
MPI_Request_c2f (3)
|