X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FTimer.c;h=493fe3d35f9c697dab5a107b06446eaadd70f57c;hb=ca5ded310c0a596be199a3da5f14be2fb2020687;hp=90f89b1c06a0e6dc7c44c37a40c31954e6117991;hpb=6879f4132340cb2f56eced35b8f6029a6f9a3ecb;p=ghc-hetmet.git diff --git a/rts/Timer.c b/rts/Timer.c index 90f89b1..493fe3d 100644 --- a/rts/Timer.c +++ b/rts/Timer.c @@ -17,6 +17,7 @@ #include "Rts.h" #include "RtsFlags.h" #include "Proftimer.h" +#include "Storage.h" #include "Schedule.h" #include "Timer.h" #include "Ticker.h" @@ -54,20 +55,22 @@ handle_tick(int unused STG_UNUSED) #if defined(THREADED_RTS) /* - * If we've been inactive for idleGCDelayTicks (set by +RTS + * If we've been inactive for idleGCDelayTime (set by +RTS * -I), tell the scheduler to wake up and do a GC, to check * for threads that are deadlocked. */ switch (recent_activity) { case ACTIVITY_YES: recent_activity = ACTIVITY_MAYBE_NO; - ticks_to_gc = RtsFlags.GcFlags.idleGCDelayTicks; + ticks_to_gc = RtsFlags.GcFlags.idleGCDelayTime / + RtsFlags.MiscFlags.tickInterval; break; case ACTIVITY_MAYBE_NO: if (ticks_to_gc == 0) break; /* 0 ==> no idle GC */ ticks_to_gc--; if (ticks_to_gc == 0) { - ticks_to_gc = RtsFlags.GcFlags.idleGCDelayTicks; + ticks_to_gc = RtsFlags.GcFlags.idleGCDelayTime / + RtsFlags.MiscFlags.tickInterval; recent_activity = ACTIVITY_INACTIVE; blackholes_need_checking = rtsTrue; /* hack: re-use the blackholes_need_checking flag */ @@ -80,18 +83,18 @@ handle_tick(int unused STG_UNUSED) #endif } -int -startTimer(nat ms) +void +startTimer(void) { #ifdef PROFILING initProfTimer(); #endif - return startTicker(ms, handle_tick); + startTicker(RtsFlags.MiscFlags.tickInterval, handle_tick); } -int -stopTimer() +void +stopTimer(void) { - return stopTicker(); + stopTicker(); }