aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-07-12 13:44:32 +0000
committerallen <allen@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-07-12 13:44:32 +0000
commit49e235b39642d89572cedc75b269492de6306224 (patch)
tree4c839ce47f3e27c96c1bafed0af38c77170a6ea3 /src
parent9d8588b582ce6696a3bd7ebbee293301426788f3 (diff)
ParseVarsForOutput -> IOUtil_ParseVarsForOutput
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOStreamedHDF5/trunk@7 0888f3d4-9f52-45d2-93bc-d00801ff5e46
Diffstat (limited to 'src')
-rw-r--r--src/GHExtension.c2
-rw-r--r--src/Output.c2
-rw-r--r--src/Startup.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/GHExtension.c b/src/GHExtension.c
index aa5abd9..9912b0f 100644
--- a/src/GHExtension.c
+++ b/src/GHExtension.c
@@ -74,7 +74,7 @@ int StreamedHDF5_InitGH (cGH *GH)
myGH->out_every = out_every > 0 ? out_every : -1;
if (outHDF5_every > 0)
myGH->out_every = outHDF5_every;
- ParseVarsForOutput (out_vars, myGH->do_output);
+ IOUtil_ParseVarsForOutput (out_vars, myGH->do_output);
for (i = 0; i < CCTK_NumVars (); i++)
myGH->out_last [i] = -1;
diff --git a/src/Output.c b/src/Output.c
index b20a384..199db92 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -261,7 +261,7 @@ static void CheckSteerableParameters (StreamedHDF5GH *myGH)
/* re-parse the 'out_vars' parameter if it was changed */
if (paramdata->n_set != out_vars_lastset) {
- ParseVarsForOutput (out_vars, myGH->do_output);
+ IOUtil_ParseVarsForOutput (out_vars, myGH->do_output);
/* Save the last setting of 'out_vars' parameter */
out_vars_lastset = paramdata->n_set;
diff --git a/src/Startup.c b/src/Startup.c
index bfae509..650570f 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -197,7 +197,7 @@ static int StreamedHDF5_InitGH (cGH *GH)
myGH->out_every = out_every > 0 ? out_every : -1;
if (outHDF5_every > 0)
myGH->out_every = outHDF5_every;
- ParseVarsForOutput (out_vars, myGH->do_output);
+ IOUtil_ParseVarsForOutput (out_vars, myGH->do_output);
for (i = 0; i < CCTK_NumVars (); i++)
myGH->out_last [i] = -1;