summaryrefslogtreecommitdiff
path: root/src/include/rfrInterface.h
blob: 11eaba910fb06b5e912a8fcfa41f73da555fb120 (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
 /*@@
   @header    rfrInterface.h
   @date      Tue Jun  1 16:50:22 1999
   @author    Tom Goodale
   @desc 
   CCTK rfr interface calls.
   @enddesc 
   @version $Header$
 @@*/


#ifndef _RFRINTERFACE_H_
#define _RFRINTERFACE_H_

#ifdef __cplusplus
extern "C" {
#endif

int CCTK_rfrTraverse(cGH *GH, int rfrpoint);
int CCTK_rfrPrintTree(cGH *GH,void *rfr_top);
int CCTK_rfrStorageOn(void *GH, int group);
int CCTK_rfrStorageOff(void *GH, int group);
int CCTK_rfrCommunicationOn(void *GH, int group);
int CCTK_rfrCommunicationOff(void *GH, int group);
int CCTK_rfrTriggerable(int entrypoint);
int CCTK_rfrCallFunc(void *GH, int language, void *function);

#ifdef __cplusplus
}
#endif

#endif