aboutsummaryrefslogtreecommitdiff
path: root/src/RecoverGH.c
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-03 16:21:29 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-03 16:21:29 +0000
commitb0e56ec36e997e0d09a0f1ee599888974afeb98f (patch)
tree4ca44263af694475eb55666ee88c59e5b1d742e2 /src/RecoverGH.c
parent99ce7841daad59ef4ddc25f295743125001857d6 (diff)
Fixed prototype problem identified by the washu indies, and fixed a couple
of function name changes I'd missed earlier Cactus/215 git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@86 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/RecoverGH.c')
-rw-r--r--src/RecoverGH.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/RecoverGH.c b/src/RecoverGH.c
index 9f0bbf7..cf33d83 100644
--- a/src/RecoverGH.c
+++ b/src/RecoverGH.c
@@ -378,7 +378,7 @@ int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
/* stop total recovery timer and print timing info */
if (print_timing_info && called_from == CP_RECOVER_DATA) {
- t_TimerInfo *info;
+ cTimerData *info;
CCTK_TimerStopI (myGH->recoverTotalTimer);
@@ -386,7 +386,7 @@ int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
/*** FIXME: select timer to get info from at runtime ***/
#ifdef HAVE_TIME_GETTIMEOFDAY
- info = CCTK_TimerCreateInfo ();
+ info = CCTK_TimerCreateData ();
if (info) {
if (myGH->recoverVarsTimer >= 0) {
@@ -404,7 +404,7 @@ int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
printf ("Total time to recover: %5.1f sec\n", info->vals[0].val.d);
}
- CCTK_TimerDestroyInfo (info);
+ CCTK_TimerDestroyData (info);
} else
CCTK_WARN (1, "Couldn't create timer info structure ! No timing output "
"available.");
@@ -432,7 +432,7 @@ static int IOFlexIO_restoreParams (IOFile ifp)
char *prefix, *param;
/* get the name of the next attribute */
- IOreadIndexedAttributeInfo (ifp, i, aname, &atype, &asize,MAX_ATTRNAME_LEN);
+ IOreadIndexedAttributeData (ifp, i, aname, &atype, &asize,MAX_ATTRNAME_LEN);
/* sort out only those attributes which hold a parameter value */
prefix = param = NULL;