IBM Books

MPI Subroutine Reference

MPI_Errhandler_f2c

Purpose

Returns a C handle to an error handler.

C synopsis

#include <mpi.h>
MPI_Errhandler MPI_Errhandler_f2c(MPI_Fint errorhandler);

Parameters

errhandler
is the error handler (handle) (IN)

Description

This function does not have C++ or FORTRAN bindings. MPI_Errhandler_f2c returns a C handle to an error handler. If errhandler is a valid FORTRAN handle to an error handler, MPI_Errhandler_f2c returns a valid C handle to that same error handler. If errhandler is not a valid FORTRAN handle, MPI_Errhandler_f2c returns a non-valid C handle. The converted handle is returned as the function's value. There is no error detection or return code.

Errors

None.

Related information

MPI_Errhandler_c2f


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