aboutsummaryrefslogtreecommitdiff
path: root/src/Hyperslab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Hyperslab.c')
-rw-r--r--src/Hyperslab.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Hyperslab.c b/src/Hyperslab.c
index 040c9ab..6f37f37 100644
--- a/src/Hyperslab.c
+++ b/src/Hyperslab.c
@@ -792,10 +792,10 @@ int Hyperslab_GetHyperslab (const cGH *GH,
my_extents[0] = extents[0];
my_downsample_[0] = downsample_[0];
- mapping = Hyperslab_DefineGlobalMappingByIndex (GH, vindex, 1,my_directions,
- my_global_origin,my_extents,
- my_downsample_, -1,
- NULL, my_hsize);
+ mapping = PUGHSlab_DefineGlobalMappingByIndex (GH, vindex, 1,my_directions,
+ my_global_origin,my_extents,
+ my_downsample_, -1,
+ NULL, my_hsize);
/* convert result back into int */
hsize[0] = my_hsize[0];
@@ -807,15 +807,15 @@ int Hyperslab_GetHyperslab (const cGH *GH,
if (hsize[0] > 0)
{
*hdata = malloc (hsize[0] * CCTK_VarTypeSize (vinfo.vartype));
- retval = Hyperslab_Get (GH, mapping, dst_proc, vindex, 0,
- vinfo.vartype, *hdata);
+ retval = PUGHSlab_Get (GH, mapping, dst_proc, vindex, 0,
+ vinfo.vartype, *hdata);
}
else
{
*hdata = NULL;
retval = 0;
}
- Hyperslab_FreeMapping (mapping);
+ PUGHSlab_FreeMapping (mapping);
return (retval);
}