NAME
MPI_Request_c2f - Convert a C MPI request into a FORTRAN MPI request SYNOPSIS
#include <mpi.h>
MPI_Fint MPI_Request_c2f(MPI_Request req );
#include <pmpi.h>
MPI_Fint PMPI_Request_c2f(MPI_Request req );
INPUT PARAMETER
req - request handle from C (handle)
RETURN VALUE
FORTRAN request handle (handle)
DESCRIPTION
The MPI_Request_f2c() function is used to convert a C request handle req , into a FORTRAN integer-sized 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_c2f() is the profiling version of this function.
SEE ALSO
MPI_Request_f2c (3)
|