diff options
author | joe <joe@jerkface.net> | 2017-02-01 03:26:08 -0500 |
---|---|---|
committer | joe <joe@jerkface.net> | 2017-02-01 03:26:08 -0500 |
commit | 900847e86665cef491730b5a588d99c557c8d7c7 (patch) | |
tree | 798b5124921598648314925b648407619a22c551 /src/Control | |
parent | c51e64666b672637843a04c2f279d7d0c9eed01c (diff) |
Quieter thread instrumentation.
Diffstat (limited to 'src/Control')
-rw-r--r-- | src/Control/Concurrent/Lifted/Instrument.hs | 1 |
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 | |||
54 | labelThread :: ThreadId -> String -> IO () | 54 | labelThread :: ThreadId -> String -> IO () |
55 | labelThread tid s = do | 55 | labelThread 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 | ||
60 | threadsInformation :: IO [PerThread] | 59 | threadsInformation :: IO [PerThread] |