summaryrefslogtreecommitdiff
path: root/src/include/cctk_Sync.h
blob: 5b4fee311da52c783cd619a07d4589ebd0b04cbd (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
 /*@@
   @header    cctk_Sync.h
   @date      Thu Jan 27 18:04:12 2000
   @author    Tom Goodale
   @desc 
   Various synchronisation functions.
   @enddesc
   @version $Header$
 @@*/

#ifndef _CCTK_SYNC_H_
#define _CCTK_SYNC_H_

#ifdef __cplusplus
extern "C" 
{
#endif

void CCTK_SyncGroupI(cGH *GH, 
                     int groupi);
 
void CCTK_SyncGroupWithVar(cGH *GH, 
                           const char *varn);

void CCTK_SyncGroupWithVarI(cGH *GH, 
                            int vari);

int CCTK_SyncGroupsI(cGH *GH, 
                     int n_groups, 
                     int *groups);

#ifdef __cplusplus
}
#endif

#endif /* _CCTK_SYNC_H_ */