summaryrefslogtreecommitdiff
path: root/src/main/DefaultTimers.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-07-10 21:52:18 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-07-10 21:52:18 +0000
commit40aef6a9f6ea05f4406bed965dbc9fc3fea6a8c8 (patch)
treeee7c8de4daefb303215c01d914322086cd4aa1b0 /src/main/DefaultTimers.c
parentec59d2e794989b3370e1ea5cd3081aad8ba5181b (diff)
CCTK_TimerRegister -> CCTK_ClockRegister
to avoid confusion between things timing and things being timed. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2281 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/DefaultTimers.c')
-rw-r--r--src/main/DefaultTimers.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/DefaultTimers.c b/src/main/DefaultTimers.c
index 9eeca294..76cfeb1a 100644
--- a/src/main/DefaultTimers.c
+++ b/src/main/DefaultTimers.c
@@ -27,7 +27,7 @@
# endif
#endif
-#include "CactusTimers.h"
+#include "cctk_Timers.h"
static const char *rcsid = "$Header$";
@@ -459,7 +459,7 @@ static void CCTKi_RegisterTimersGetTimeOfDay(void)
functions.get = CCTKi_TimerGetTimeOfDayGet;
functions.set = CCTKi_TimerGetTimeOfDaySet;
- CCTK_TimerRegister("GetrUsage", &functions);
+ CCTK_ClockRegister("GetrUsage", &functions);
}
#endif /* HAVE_TIME_GETTIMEOFDAY */
@@ -812,7 +812,7 @@ static void CCTKi_RegisterTimersGetrUsage(void)
functions.get = CCTKi_TimerGetrUsageGet;
functions.set = CCTKi_TimerGetrUsageSet;
- CCTK_TimerRegister("GetrUsage", &functions);
+ CCTK_ClockRegister("GetrUsage", &functions);
}