diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-01-27 13:54:30 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-01-27 13:54:30 +0000 |
commit | bb7b45dcf16118fb03bf28aea08a168ac6598a33 (patch) | |
tree | c00d93fb485c63f1a6fb4b1b6de6daaf0cc949d4 /rts/Timer.c | |
parent | cb7e8821e9c08537bce370b56442c02ba28decd3 (diff) | |
download | haskell-bb7b45dcf16118fb03bf28aea08a168ac6598a33.tar.gz |
Don't Terminate the ticker thread (#3748)
Diffstat (limited to 'rts/Timer.c')
-rw-r--r-- | rts/Timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Timer.c b/rts/Timer.c index 8c178a076b..a5d42fbc9d 100644 --- a/rts/Timer.c +++ b/rts/Timer.c @@ -114,9 +114,9 @@ stopTimer(void) } void -exitTimer(void) +exitTimer (rtsBool wait) { if (RtsFlags.MiscFlags.tickInterval != 0) { - exitTicker(); + exitTicker(wait); } } |