summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-04 18:48:11 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-04 18:48:11 +0000
commit9afeb87f3ccb8edc78c478fda00ba43fee10e633 (patch)
treea97d028fe12d359bbf103435bbf8003167f4f9f2
parentc6cfe61a6bd2b7f2a70365dbdd3cc24043cafe3c (diff)
In CCTK_SyncGroupsI(), changed an 'int *' parameter into a 'const int *'.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2142 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/include/cctk_Sync.h29
1 files changed, 13 insertions, 16 deletions
diff --git a/src/include/cctk_Sync.h b/src/include/cctk_Sync.h
index 5b4fee31..876edb01 100644
--- a/src/include/cctk_Sync.h
+++ b/src/include/cctk_Sync.h
@@ -2,32 +2,29 @@
@header cctk_Sync.h
@date Thu Jan 27 18:04:12 2000
@author Tom Goodale
- @desc
- Various synchronisation functions.
+ @desc
+ Various CCTK synchronisation functions.
@enddesc
- @version $Header$
+ @version $Header$
@@*/
#ifndef _CCTK_SYNC_H_
#define _CCTK_SYNC_H_
#ifdef __cplusplus
-extern "C"
+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);
+void CCTK_SyncGroupI (cGH *GH,
+ int group);
+void CCTK_SyncGroupWithVar (cGH *GH,
+ const char *varname);
+void CCTK_SyncGroupWithVarI (cGH *GH,
+ int var);
+int CCTK_SyncGroupsI (cGH *GH,
+ int n_groups,
+ const int *groups);
#ifdef __cplusplus
}