aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/CallFunction.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2008-10-07 12:25:09 -0500
committerErik Schnetter <schnetter@cct.lsu.edu>2008-10-07 12:25:09 -0500
commit7dd9186991d1d90532e0e86e6d1dd583820efeac (patch)
treeec56271b58fd0005f0cfb5c8f64f869e010a1389 /Carpet/Carpet/src/CallFunction.cc
parentd6e4a84facdcb14cc95c8690660579ab72c925fa (diff)
Carpet: Pass more arguments to schedule wrapper functions
Diffstat (limited to 'Carpet/Carpet/src/CallFunction.cc')
-rw-r--r--Carpet/Carpet/src/CallFunction.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/Carpet/src/CallFunction.cc b/Carpet/Carpet/src/CallFunction.cc
index f5c79dbf1..696b5ce49 100644
--- a/Carpet/Carpet/src/CallFunction.cc
+++ b/Carpet/Carpet/src/CallFunction.cc
@@ -312,11 +312,11 @@ namespace Carpet {
time_and_mode,
attribute->where,
attribute->thorn, attribute->routine);
- CallBeforeRoutines (cctkGH);
+ CallBeforeRoutines (cctkGH, function, attribute, data);
user_timer.start();
int const res = CCTK_CallFunction (function, attribute, data);
user_timer.stop();
- CallAfterRoutines (cctkGH);
+ CallAfterRoutines (cctkGH, function, attribute, data);
assert (res==0);
}