aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrideout <rideout@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2003-05-02 21:56:57 +0000
committerrideout <rideout@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2003-05-02 21:56:57 +0000
commit354de0a3702d8e8b5ecb31036f67a4d2bb75a6ea (patch)
tree00de437791d64f9a8d7e339f7d30351384b071c5
parent2d3bafd961cb671c275c99b5e2d884fe7e910480 (diff)
Support for new aliased function specification format.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@145 94b1c47f-dcfd-45ef-a468-0854c0e9e350
-rw-r--r--interface.ccl40
1 files changed, 20 insertions, 20 deletions
diff --git a/interface.ccl b/interface.ccl
index 8a7e49f..367a649 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -6,30 +6,30 @@ inherits: IO, Hyperslab
CCTK_INT FUNCTION \
- Hyperslab_GetList (CCTK_POINTER cctkGH, \
- CCTK_INT mapping_handle, \
- CCTK_INT num_arrays, \
- CCTK_INT:ARRAY procs, \
- CCTK_INT:ARRAY vindices, \
- CCTK_INT:ARRAY timelevels, \
- CCTK_INT:ARRAY hdatatypes, \
- CCTK_POINTER:ARRAY hdata, \
- CCTK_INT:ARRAY retvals)
+ Hyperslab_GetList (CCTK_POINTER IN cctkGH, \
+ CCTK_INT IN mapping_handle, \
+ CCTK_INT IN num_arrays, \
+ CCTK_INT OUT procs, \
+ CCTK_INT OUT vindices, \
+ CCTK_INT OUT timelevels, \
+ CCTK_INT OUT hdatatypes, \
+ CCTK_POINTER OUT hdata, \
+ CCTK_INT OUT retvals)
CCTK_INT FUNCTION \
- Hyperslab_DefineGlobalMappingByIndex (CCTK_POINTER cctkGH, \
- CCTK_INT vindex, \
- CCTK_INT hdim, \
- CCTK_INT:ARRAY direction, \
- CCTK_INT:ARRAY origin, \
- CCTK_INT:ARRAY extent, \
- CCTK_INT:ARRAY downsample, \
- CCTK_INT table_handle, \
+ Hyperslab_DefineGlobalMappingByIndex (CCTK_POINTER IN cctkGH, \
+ CCTK_INT IN vindex, \
+ CCTK_INT IN hdim, \
+ CCTK_INT OUT direction, \
+ CCTK_INT OUT origin, \
+ CCTK_INT OUT extent, \
+ CCTK_INT OUT downsample, \
+ CCTK_INT IN table_handle, \
CCTK_INT CCTK_FPOINTER \
- conversion_fn (CCTK_INT nelems, CCTK_INT stride, CCTK_INT from_type, CCTK_INT to_type, CCTK_POINTER:ARRAY from, CCTK_POINTER:ARRAY to), \
- CCTK_INT:ARRAY hsize)
+ conversion_fn (CCTK_INT IN nelems, CCTK_INT IN stride, CCTK_INT IN from_type, CCTK_INT IN to_type, CCTK_POINTER OUT from, CCTK_POINTER OUT to), \
+ CCTK_INT OUT hsize)
-CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT mapping_handle)
+CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT IN mapping_handle)
USES FUNCTION Hyperslab_GetList