free_handle_persist Subroutine

private subroutine free_handle_persist(handle)

Frees a single persistent request handle

Arguments

Type IntentOptional Attributes Name
integer, intent(inout) :: handle

Contents

Source Code


Source Code

  subroutine free_handle_persist(handle)
    implicit none
    integer, intent(inout) :: handle
# ifdef MPI
    integer :: ierror
!$OMP MASTER
    call time_message(.false., time_mp_ptp, ' MPI Point-to-point')
!$OMP END MASTER
    call mpi_request_free(handle,ierror)
!$OMP MASTER
    call time_message(.false., time_mp_ptp, ' MPI Point-to-point')
!$OMP END MASTER
# else
    UNUSED_DUMMY(handle)
# endif
  end subroutine free_handle_persist