sync Subroutine

private subroutine sync(this)

Synchronize the shared resource

Type Bound

shared_rhash_t

Arguments

Type IntentOptional Attributes Name
class(shared_rhash_t), intent(inout) :: this

Source Code

    subroutine sync(this)
        class(shared_rhash_t), intent(inout) :: this

        call this%indices%sync()
        call this%hval_offsets%sync()
    end subroutine sync