Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 983 Bytes

MPI_Close_port.3.rst

File metadata and controls

64 lines (40 loc) · 983 Bytes

MPI_Close_port

:ref:`MPI_Close_port` - Releases the specified network address.

SYNTAX

C Syntax

#include <mpi.h>

int MPI_Close_port(const char *port_name)

Fortran Syntax

USE MPI
! or the older form: INCLUDE 'mpif.h'

MPI_CLOSE_PORT(PORT_NAME, IERROR)
    CHARACTER*(*)   PORT_NAME
    INTEGER     IERROR

Fortran 2008 Syntax

USE mpi_f08

MPI_Close_port(port_name, ierror)
    CHARACTER(LEN=*), INTENT(IN) :: port_name
    INTEGER, OPTIONAL, INTENT(OUT) :: ierror

INPUT PARAMETER

  • port_name : A port (string).

OUTPUT PARAMETER

  • ierror : Fortran only: Error status (integer).

DESCRIPTION

:ref:`MPI_Close_port` releases the network address represented by port_name.

ERRORS