summaryrefslogtreecommitdiff
path: root/rts/Timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'rts/Timer.c')
-rw-r--r--rts/Timer.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/rts/Timer.c b/rts/Timer.c
index 493fe3d35f..05d1fecdc7 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);
}