aboutsummaryrefslogtreecommitdiff
path: root/src/NewPUGHSlab.h
diff options
context:
space:
mode:
authortradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2001-11-05 15:03:07 +0000
committertradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2001-11-05 15:03:07 +0000
commit08551ca9cca444ca79db81c05c548d986e0c4a54 (patch)
treef092528f177b4305a8194600970aea71891db0d3 /src/NewPUGHSlab.h
parent4850c0d73c5f2de98d7122c405160b9d9cb2393d (diff)
Added const qualifier to the 'cGH *' argument of some more PUGHSlab functions.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHSlab/trunk@60 10716dce-81a3-4424-a2c8-48026a0d3035
Diffstat (limited to 'src/NewPUGHSlab.h')
-rw-r--r--src/NewPUGHSlab.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/NewPUGHSlab.h b/src/NewPUGHSlab.h
index 1daef6a..7fcffcb 100644
--- a/src/NewPUGHSlab.h
+++ b/src/NewPUGHSlab.h
@@ -25,21 +25,21 @@ typedef void (*PUGHSlab_conversion_fn) (void *hdata,
/* function prototypes */
-int NewHyperslab_GetLocalHyperslab (cGH *GH,
- int vindex,
- int vtimelvl,
- int hdim,
- int htype,
- PUGHSlab_conversion_fn copy_fn,
- const int global_startpoint[/* vdim */],
- const int directions[/* hdim * vdim */],
- const int lengths[/* hdim */],
- const int downsample_[/* hdim */],
- void **hdata,
- int *free_hdata,
- int hsize[/* hdim */],
- int hsize_global[/* hdim */],
- int hoffset_global[/* hdim */]);
+int NewHyperslab_GetLocalHyperslab (const cGH *GH,
+ int vindex,
+ int vtimelvl,
+ int hdim,
+ int htype,
+ PUGHSlab_conversion_fn copy_fn,
+ const int global_startpoint[/* vdim */],
+ const int directions[/* hdim * vdim */],
+ const int lengths[/* hdim */],
+ const int downsample_[/* hdim */],
+ void **hdata,
+ int *free_hdata,
+ int hsize[/* hdim */],
+ int hsize_global[/* hdim */],
+ int hoffset_global[/* hdim */]);
#if 0
int NewHyperslab_GetHyperslab (cGH *GH,
int target_proc,