IBM Books

MPI Subroutine Reference

MPI_Type_c2f

Purpose

Translates a C datatype handle into a FORTRAN handle to the same datatype.

C synopsis

#include <mpi.h>
MPI_Fint MPI_Type_c2f(MPI_Type datatype);

Parameters

datatype
is the datatype (handle) (IN)

Description

This function does not have C++ or FORTRAN bindings. MPI_Type_c2f translates a C datatype handle into a FORTRAN handle to the same datatype; it maps a null handle into a null handle and a non-valid handle into a non-valid handle. The converted handle is returned as the function's value. There is no error detection or return code.

Errors

None.

Related information

MPI_Type_f2c


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]