SURFEX v8.1
General documentation of Surfex
mpl_comm_free_mod.F90
Go to the documentation of this file.
2 
3 !**** *MPL_COMM_FREE_MOD* - Release ressources used by a communicator
4 
5 ! Author.
6 ! -------
7 ! Philippe Marguinaud *METEO FRANCE*
8 ! Original : 11-09-2012
9 
10 USE parkind1, ONLY : jpim
11 
12 IMPLICIT NONE
13 
14 PRIVATE
15 PUBLIC :: mpl_comm_free
16 
17 CONTAINS
18 
19 SUBROUTINE mpl_comm_free (KCOMM, KERR, CDSTRING)
20 INTEGER (KIND=JPIM), INTENT (IN) :: KCOMM
21 INTEGER (KIND=JPIM), INTENT (OUT) :: KERR
22 CHARACTER (LEN=*), INTENT (IN), OPTIONAL :: CDSTRING
23 
24 CALL mpi_comm_free (kcomm, kerr)
25 
26 END SUBROUTINE mpl_comm_free
27 
28 END MODULE mpl_comm_free_mod
integer, parameter jpim
Definition: parkind1.F90:13
subroutine, public mpl_comm_free(KCOMM, KERR, CDSTRING)