summaryrefslogtreecommitdiff
path: root/src/include/cctk_Sync.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-15 09:48:10 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-15 09:48:10 +0000
commite0795ec8aea49ef240f390a67efa65c91e37d672 (patch)
treed29f20134c753625ad6897fefe818313e2abd725 /src/include/cctk_Sync.h
parent5821d457cee885257472ca46231b8c97709fc2ed (diff)
Added a const qualifier to the cGH argument of all CCTK_SyncGroup*() flesh
routines. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3275 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Sync.h')
-rw-r--r--src/include/cctk_Sync.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/cctk_Sync.h b/src/include/cctk_Sync.h
index e6bcb5de..de9bd547 100644
--- a/src/include/cctk_Sync.h
+++ b/src/include/cctk_Sync.h
@@ -16,10 +16,10 @@ extern "C"
{
#endif
-int CCTK_SyncGroupI (cGH *GH, int group);
-int CCTK_SyncGroupWithVar (cGH *GH, const char *varname);
-int CCTK_SyncGroupWithVarI (cGH *GH, int var);
-int CCTK_SyncGroupsI (cGH *GH, int n_groups, const int *groups);
+int CCTK_SyncGroupI (const cGH *GH, int group);
+int CCTK_SyncGroupWithVar (const cGH *GH, const char *varname);
+int CCTK_SyncGroupWithVarI (const cGH *GH, int var);
+int CCTK_SyncGroupsI (const cGH *GH, int n_groups, const int *groups);
#ifdef __cplusplus
}