synchronization_s.f90 Source File


This file depends on

sourcefile~~synchronization_s.f90~~EfferentGraph sourcefile~synchronization_s.f90 synchronization_s.f90 sourcefile~prif_private_s.f90 prif_private_s.f90 sourcefile~synchronization_s.f90->sourcefile~prif_private_s.f90 sourcefile~prif.f90 prif.F90 sourcefile~prif_private_s.f90->sourcefile~prif.f90

Contents

Source Code


Source Code

! Copyright (c), The Regents of the University of California
! Terms of use are as specified in LICENSE.txt
submodule(prif:prif_private_s) sychronization_s

  implicit none

contains

  module procedure prif_sync_all
    !TODO: handle optional args stat, errmsg, errmsg_alloc
    call caf_sync_all
  end procedure

  module procedure prif_sync_images
    call unimplemented("prif_sync_images")
  end procedure

  module procedure prif_sync_team
    call unimplemented("prif_sync_team")
  end procedure

  module procedure prif_sync_memory
    call unimplemented("prif_sync_memory")
  end procedure

end submodule