summaryrefslogtreecommitdiff
path: root/src/include/cctk_Sync.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-28 00:22:14 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-28 00:22:14 +0000
commitf16bc7b6fee87a8383f446a9a9d63011510846df (patch)
tree443bfe5b985662df8602245f000ee849247b7687 /src/include/cctk_Sync.h
parent89a883e495f6c164acbba291b224c761a6f90818 (diff)
New header file for stuff in CactusSync.c
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1320 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Sync.h')
-rw-r--r--src/include/cctk_Sync.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/include/cctk_Sync.h b/src/include/cctk_Sync.h
new file mode 100644
index 00000000..5b4fee31
--- /dev/null
+++ b/src/include/cctk_Sync.h
@@ -0,0 +1,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_ */