summaryrefslogtreecommitdiff
path: root/src/comm
diff options
context:
space:
mode:
Diffstat (limited to 'src/comm')
-rw-r--r--src/comm/CactusComm.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/comm/CactusComm.c b/src/comm/CactusComm.c
index 08c32715..e26915b4 100644
--- a/src/comm/CactusComm.c
+++ b/src/comm/CactusComm.c
@@ -16,3 +16,13 @@ int *CCTK_ArrayGroupSize(cGH *GH, const char *groupname, int dir)
{
return CCTK_ArrayGroupSize_ByBoth(GH,-1,groupname,dir);
}
+
+int CCTK_QueryGroupStorage_ByIndex(cGH *GH, int index)
+{
+ return CCTK_QueryGroupStorage_ByBoth(GH,index , NULL);
+}
+
+int CCTK_QueryGroupStorage(cGH *GH, const char *groupname)
+{
+ return CCTK_QueryGroupStorage_ByBoth(GH, -1, groupname);
+}