win_unlock_all Subroutine

private subroutine win_unlock_all(this)

Type Bound

win_t

Arguments

Type IntentOptional Attributes Name
class(win_t), intent(in) :: this

Calls

proc~~win_unlock_all~2~~CallsGraph proc~win_unlock_all~2 win_t%win_unlock_all mpi_win_unlock_all mpi_win_unlock_all proc~win_unlock_all~2->mpi_win_unlock_all

Variables

Type Visibility Attributes Name Initial
integer, private :: ierr

Source Code

   subroutine win_unlock_all(this)
      class(win_t), intent(in) :: this
      integer :: ierr

      call MPI_Win_unlock_all(this%m_win, ierr)
   end subroutine win_unlock_all