summaryrefslogtreecommitdiff
path: root/src/Control/Concurrent/Lifted
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-02-01 03:26:08 -0500
committerjoe <joe@jerkface.net>2017-02-01 03:26:08 -0500
commit900847e86665cef491730b5a588d99c557c8d7c7 (patch)
tree798b5124921598648314925b648407619a22c551 /src/Control/Concurrent/Lifted
parentc51e64666b672637843a04c2f279d7d0c9eed01c (diff)
Quieter thread instrumentation.
Diffstat (limited to 'src/Control/Concurrent/Lifted')
-rw-r--r--src/Control/Concurrent/Lifted/Instrument.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Control/Concurrent/Lifted/Instrument.hs b/src/Control/Concurrent/Lifted/Instrument.hs
index e4582375..29bac871 100644
--- a/src/Control/Concurrent/Lifted/Instrument.hs
+++ b/src/Control/Concurrent/Lifted/Instrument.hs
@@ -54,7 +54,6 @@ fork action = do
54labelThread :: ThreadId -> String -> IO () 54labelThread :: ThreadId -> String -> IO ()
55labelThread tid s = do 55labelThread tid s = do
56 GHC.labelThread tid s 56 GHC.labelThread tid s
57 putStrLn $ "labelThread "++s++" "++show tid
58 modifyThreads $ Map.adjust (\pt -> pt { lbl = s }) tid 57 modifyThreads $ Map.adjust (\pt -> pt { lbl = s }) tid
59 58
60threadsInformation :: IO [PerThread] 59threadsInformation :: IO [PerThread]