aboutsummaryrefslogtreecommitdiff
path: root/src/Storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Storage.c')
-rw-r--r--src/Storage.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Storage.c b/src/Storage.c
index d431a2b..2970a79 100644
--- a/src/Storage.c
+++ b/src/Storage.c
@@ -307,7 +307,7 @@ int PUGH_QueryGroupStorage (const cGH *GH, int group, const char *groupname)
@var GH
@vdesc Pointer to CCTK grid hierarchy
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var groupname
@@ -327,7 +327,7 @@ int PUGH_QueryGroupStorage (const cGH *GH, int group, const char *groupname)
-3 if invalid groupname was given
@endreturndesc
@@*/
-int PUGH_EnableGroupStorage (cGH *GH, const char *groupname)
+int PUGH_EnableGroupStorage (const cGH *GH, const char *groupname)
{
DECLARE_CCTK_PARAMETERS
int group; /* group index */
@@ -441,7 +441,7 @@ int PUGH_EnableGroupStorage (cGH *GH, const char *groupname)
@var GH
@vdesc Pointer to CCTK grid hierarchy
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var groupname
@@ -456,7 +456,7 @@ int PUGH_EnableGroupStorage (cGH *GH, const char *groupname)
-1 if group type is invalid
@endreturndesc
@@*/
-int PUGH_DisableGroupStorage (cGH *GH, const char *groupname)
+int PUGH_DisableGroupStorage (const cGH *GH, const char *groupname)
{
DECLARE_CCTK_PARAMETERS
int group; /* group index */
@@ -1076,7 +1076,7 @@ void PUGHi_PrintStorageReport ()
@var GH
@vdesc Pointer to CCTK grid hierarchy
- @vtype cGH *
+ @vtype const cGH *
@vio inout
@vcomment
A driver should replace the appropriate GV pointers on this
@@ -1116,7 +1116,7 @@ void PUGHi_PrintStorageReport ()
modified.
@endreturndesc
@@*/
-int PUGH_GroupStorageIncrease(cGH *GH, int n_groups,const int *groups,const int *timelevels, int *status)
+int PUGH_GroupStorageIncrease(const cGH *GH, int n_groups,const int *groups,const int *timelevels, int *status)
{
int retval;
int group;
@@ -1203,7 +1203,7 @@ int PUGH_GroupStorageIncrease(cGH *GH, int n_groups,const int *groups,const int
@var GH
@vdesc Pointer to CCTK grid hierarchy
- @vtype cGH *
+ @vtype const cGH *
@vio inout
@vcomment
A driver should replace the appropriate GV pointers on this
@@ -1243,7 +1243,7 @@ int PUGH_GroupStorageIncrease(cGH *GH, int n_groups,const int *groups,const int
modified.
@endreturndesc
@@*/
-int PUGH_GroupStorageDecrease(cGH *GH, int n_groups,const int *groups,const int *timelevels, int *status)
+int PUGH_GroupStorageDecrease(const cGH *GH, int n_groups,const int *groups,const int *timelevels, int *status)
{
int retval;
int group;