summaryrefslogtreecommitdiff
path: root/src/util/CactusTimers.c
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-12-28 19:03:14 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-12-28 19:03:14 +0000
commit3abd66b09008b065c9dc815462261b910a6180ae (patch)
tree1472412b834096351a78c96d718af8c649fbaa64 /src/util/CactusTimers.c
parentfe4ba087da02fb06b41e936626521f0fd77434e3 (diff)
Revert accidental changes from the last commit.
Sorry. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3945 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/util/CactusTimers.c')
-rw-r--r--src/util/CactusTimers.c23
1 files changed, 6 insertions, 17 deletions
diff --git a/src/util/CactusTimers.c b/src/util/CactusTimers.c
index 6ad254d3..7c630dac 100644
--- a/src/util/CactusTimers.c
+++ b/src/util/CactusTimers.c
@@ -405,13 +405,12 @@ static int CCTKi_TimerCreate (const char *timername)
{
int retval;
t_Timer *timer;
- void *tmp;
const cClockFuncs *funcs;
int this_timer;
int handle;
- if (Util_GetHandle (timers, timername, &tmp) >= 0)
+ if (Util_GetHandle (timers, timername, (void **) &timer) >= 0)
{
/* Handle already exists */
retval = -1;
@@ -477,13 +476,11 @@ static int CCTKi_TimerCreate (const char *timername)
@@*/
int CCTK_TimerDestroy (const char *timername)
{
- void *tmp;
t_Timer *timer;
int this_timer;
- this_timer = Util_GetHandle (timers, timername, &tmp);
- timer = tmp;
+ this_timer = Util_GetHandle (timers, timername, (void **) &timer);
if (this_timer >= 0)
{
CCTKi_TimerDestroy (this_timer, timer);
@@ -615,13 +612,11 @@ static void CCTKi_TimerDestroy (int this_timer, t_Timer *timer)
@@*/
int CCTK_TimerStart (const char *timername)
{
- void *tmp;
t_Timer *timer;
int this_timer;
- this_timer = Util_GetHandle (timers, timername, &tmp);
- timer = tmp;
+ this_timer = Util_GetHandle (timers, timername, (void **) &timer);
if (this_timer >= 0)
{
CCTKi_TimerStart (this_timer, timer);
@@ -749,13 +744,11 @@ static void CCTKi_TimerStart (int this_timer, t_Timer *timer)
@@*/
int CCTK_TimerStop (const char *timername)
{
- void *tmp;
t_Timer *timer;
int this_timer;
- this_timer = Util_GetHandle (timers, timername, &tmp);
- timer = tmp;
+ this_timer = Util_GetHandle (timers, timername, (void **)&timer);
if (this_timer >= 0)
{
CCTKi_TimerStop (this_timer, timer);
@@ -882,13 +875,11 @@ static void CCTKi_TimerStop (int this_timer, t_Timer *timer)
@@*/
int CCTK_TimerReset (const char *timername)
{
- void *tmp;
t_Timer *timer;
int this_timer;
- this_timer = Util_GetHandle (timers, timername, &tmp);
- timer = tmp;
+ this_timer = Util_GetHandle (timers, timername, (void **) &timer);
if (this_timer >= 0)
{
CCTKi_TimerReset (this_timer, timer);
@@ -1021,13 +1012,11 @@ static void CCTKi_TimerReset (int this_timer, t_Timer *timer)
@@*/
int CCTK_Timer (const char *timername, cTimerData *info)
{
- void *tmp;
t_Timer *timer;
int this_timer;
- this_timer = Util_GetHandle (timers, timername, &tmp);
- timer = tmp;
+ this_timer = Util_GetHandle (timers, timername, (void **) &timer);
if (this_timer >= 0)
{
CCTKi_Timer (this_timer, timer, info);