SYNTAX

C Syntax

int MPI_Request_free(MPI_Request* request)

Fortran Syntax

USE MPI
! or the older form: INCLUDE 'mpif.h'
MPI_REQUEST_FREE(REQUEST, IERROR)
    INTEGER REQUEST, IERROR

Fortran 2008 Syntax

USE mpi_f08
MPI_Request_free(request, ierror)
    TYPE(MPI_Request), INTENT(INOUT) :: request
    INTEGER, OPTIONAL, INTENT(OUT) :: ierror