aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2002-11-12 11:27:01 +0000
committertradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2002-11-12 11:27:01 +0000
commitfc6a3039256de38941d92104b9915aad3201d44e (patch)
treee6a9dc0eb7f70e71f77d3842925e1b0e016803ff
parent367219cb43c8289f536a3845457f8c8f999fcaf0 (diff)
Pass the cGH pointer as a CCTK_POINTER_TO_CONST.
You will need to update the flesh also. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHSlab/trunk@94 10716dce-81a3-4424-a2c8-48026a0d3035
-rw-r--r--interface.ccl8
1 files changed, 4 insertions, 4 deletions
diff --git a/interface.ccl b/interface.ccl
index a19bd2e..cdb844b 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -4,14 +4,14 @@
implements: Hyperslab
inherits: Driver
-CCTK_INT FUNCTION Hyperslab_Get const CCTK_POINTER cctkGH, \
+CCTK_INT FUNCTION Hyperslab_Get CCTK_POINTER_TO_CONST cctkGH, \
CCTK_INT mapping_handle, \
CCTK_INT proc, \
CCTK_INT vindex, \
CCTK_INT timelevel, \
CCTK_INT hdatatype, \
CCTK_POINTER hdata
-CCTK_INT FUNCTION Hyperslab_GetList const CCTK_POINTER cctkGH, \
+CCTK_INT FUNCTION Hyperslab_GetList CCTK_POINTER_TO_CONST cctkGH, \
CCTK_INT mapping_handle, \
CCTK_INT num_arrays, \
const CCTK_INT *procs, \
@@ -20,7 +20,7 @@ CCTK_INT FUNCTION Hyperslab_GetList const CCTK_POINTER cctkGH, \
const CCTK_INT *hdatatypes, \
CCTK_POINTER const *hdata, \
CCTK_INT *retvals
-CCTK_INT FUNCTION Hyperslab_DefineLocalMappingByIndex const CCTK_POINTER cctkGH, \
+CCTK_INT FUNCTION Hyperslab_DefineLocalMappingByIndex CCTK_POINTER_TO_CONST cctkGH, \
CCTK_INT vindex, \
CCTK_INT hdim, \
const CCTK_INT *direction, \
@@ -32,7 +32,7 @@ CCTK_INT FUNCTION Hyperslab_DefineLocalMappingByIndex const CCTK_POINTER cctkGH,
CCTK_INT *hsize_local, \
CCTK_INT *hsize_global, \
CCTK_INT *hoffset_global
-CCTK_INT FUNCTION Hyperslab_DefineGlobalMappingByIndex const CCTK_POINTER cctkGH, \
+CCTK_INT FUNCTION Hyperslab_DefineGlobalMappingByIndex CCTK_POINTER_TO_CONST cctkGH, \
CCTK_INT vindex, \
CCTK_INT hdim, \
const CCTK_INT *direction, \