X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FTimer.c;h=05d1fecdc7faadc194293a2912147004d84b1c4a;hb=df58c2a53d37caf4f3b4d0b60a0466461bba7d19;hp=493fe3d35f9c697dab5a107b06446eaadd70f57c;hpb=e30aca19def5c629a8429bd57e56535b7f8f85c8;p=ghc-hetmet.git diff --git a/rts/Timer.c b/rts/Timer.c index 493fe3d..05d1fec 100644 --- a/rts/Timer.c +++ b/rts/Timer.c @@ -42,9 +42,7 @@ static void handle_tick(int unused STG_UNUSED) { -#ifdef PROFILING handleProfTick(); -#endif if (RtsFlags.ConcFlags.ctxtSwitchTicks > 0) { ticks_to_ctxt_switch--; if (ticks_to_ctxt_switch <= 0) { @@ -86,10 +84,7 @@ handle_tick(int unused STG_UNUSED) void startTimer(void) { -#ifdef PROFILING initProfTimer(); -#endif - startTicker(RtsFlags.MiscFlags.tickInterval, handle_tick); }