blob: 8f6c18b79da7931533ad41fdc3a6e27b510db3f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- Test for bug #1047
import Control.Concurrent
import Control.Exception
-- This loop spends most of its time printing stuff, and very occasionally
-- pops outside 'block'. This test ensures that an thread trying to
-- throwTo this thread will eventually succeed.
loop = mask_ (print "alive") >> loop
main = do tid <- forkIO loop
threadDelay 1
killThread tid
|