aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Sync.F90
blob: d4ed01c5ba0564b2a18e2021ebba0c2954f3ca85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Sync.h
  @enddesc
  @version $Header$
@@*/

#include "cctk.h"

module cctk_Sync
  implicit none

  interface

     subroutine CCTK_SyncGroupI (ierr, cctkGH, group)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST cctkGH
       integer               group
     end subroutine CCTK_SyncGroupI
     
     subroutine CCTK_SyncGroupWithVar (ierr, cctkGH, varname)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST cctkGH
       character(*)          varname
     end subroutine CCTK_SyncGroupWithVar
     
     subroutine CCTK_SyncGroupWithVarI (ierr, cctkGH, var)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST cctkGH
       integer               var
     end subroutine CCTK_SyncGroupWithVarI
     
     subroutine CCTK_SyncGroups (ierr, cctkGH, n_groups, groups)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST cctkGH
       integer               n_groups
       integer               groups(n_groups)
     end subroutine CCTK_SyncGroups
     
  end interface
  
end module cctk_Sync