Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Variables
Type
Visibility
Attributes
Name
Initial
integer(kind=int32),
private
::
ierr
integer(kind=int32),
private
::
ltype
Source Code
subroutine win_lock(this,rank,lock_type)class(win_t),intent(in)::thisinteger(int32),intent(in)::rankinteger(int32),intent(in),optional::lock_typeinteger(int32)::ierr,ltypeif(present(lock_type))thenltype=lock_typeelseltype=MPI_LOCK_SHAREDend if call MPI_Win_lock(ltype,rank,0_int32,this%m_win,ierr)end subroutine win_lock