Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Control/Concurrent/Async/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import Data.IORef

import GHC.Exts
import GHC.IO hiding (finally, onException)
import GHC.Conc (ThreadId(..))
import GHC.Conc (ThreadId(..), labelThread)

#if defined(__MHS__)
import Data.Traversable
Expand Down Expand Up @@ -958,7 +958,7 @@ debugLabelMe ::
IO ()
debugLabelMe =
#ifdef DEBUG_AUTO_LABEL
myThreadId >>= flip labelThread (GHC.Stack.prettyCallStack callStack)
myThreadId >>= flip labelThread (GHC.Stack.prettyCallStack GHC.Stack.callStack)
#else
pure ()
#endif
Loading