aboutsummaryrefslogtreecommitdiff
path: root/src/RecoverGH.c
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-07-08 12:55:09 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-07-08 12:55:09 +0000
commitde06e7d7f8c68949ab17c4434d3dca6335caf3c6 (patch)
tree221681e00e60cc246c507a468ee41e5a03e87ab8 /src/RecoverGH.c
parentc21a78d1eabf4de6a3284417c1ccbfe17783cc3e (diff)
New names for Group function calls
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@14 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/RecoverGH.c')
-rw-r--r--src/RecoverGH.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/RecoverGH.c b/src/RecoverGH.c
index 0d86946..176b261 100644
--- a/src/RecoverGH.c
+++ b/src/RecoverGH.c
@@ -65,7 +65,7 @@ int IOFlexIO_RestoreIEEEIOfile (cGH *GH, IOFile ifp,
int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
{
-#ifdef CACTUSBASE_PUGH
+#ifdef CACTUSPUGH_PUGH
DECLARE_CCTK_PARAMETERS
IOFile ifp;
@@ -89,12 +89,12 @@ int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
/* Get the handles for PUGH and IOUtil extensions */
- pughGH = (pGH *) GH->extensions [CCTK_GetGHExtensionHandle ("PUGH")];
- ioUtilGH = (ioGH *) GH->extensions [CCTK_GetGHExtensionHandle ("IO")];
+ pughGH = (pGH *) GH->extensions [CCTK_GHExtensionHandle ("PUGH")];
+ ioUtilGH = (ioGH *) GH->extensions [CCTK_GHExtensionHandle ("IO")];
/* identify myself */
- nprocs = CCTK_GetnProcs (GH);
- myproc = CCTK_GetMyProc (GH);
+ nprocs = CCTK_nProcs (GH);
+ myproc = CCTK_MyProc (GH);
/* initialize timers */
CactusResetTimer (&total_time);
@@ -338,6 +338,8 @@ int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
total_time.total.basic [0]);
}
+#endif /* CACTUSPUGH_PUGH */
+
return (0);
-#endif /* CACTUSBASE_PUGH */
+
}