Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. threadLabel :: ThreadId -> IO (Maybe String)

    ghc-internal GHC.Internal.Conc.Sync

    Query the label of thread, returning Nothing if the thread's label has not been set.

  2. threadStatus :: ThreadId -> IO ThreadStatus

    ghc-internal GHC.Internal.Conc.Sync

    Query the current execution status of a thread.

  3. tryReadMVar :: MVar a -> IO (Maybe a)

    ghc-internal GHC.Internal.Control.Concurrent.MVar

    A non-blocking version of readMVar. The tryReadMVar function returns immediately, with Nothing if the MVar was empty, or Just a if the MVar was full with contents a.

  4. ThreadKilled :: AsyncException

    ghc-internal GHC.Internal.Control.Exception

    This exception is raised by another thread calling killThread, or by the system if it needs to terminate the thread for some reason.

  5. ThreadKilled :: AsyncException

    ghc-internal GHC.Internal.Control.Exception.Base

    This exception is raised by another thread calling killThread, or by the system if it needs to terminate the thread for some reason.

  6. evtRead :: Event

    ghc-internal GHC.Internal.Event

    Data is available to be read.

  7. data ThreadId#

    ghc-internal GHC.Internal.Exts

    (In a non-concurrent implementation, this can be a singleton type, whose (unique) value is returned by myThreadId#. The other operations can be omitted.)

  8. atomicReadIntArray# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Int# #)

    ghc-internal GHC.Internal.Exts

    Given an array and an offset in machine words, read an element. The index is assumed to be in bounds. Implies a full memory barrier. Warning: this can fail with an unchecked exception.

  9. atomicReadWordAddr# :: Addr# -> State# d -> (# State# d, Word# #)

    ghc-internal GHC.Internal.Exts

    Given an address, read a machine word. Implies a full memory barrier. Warning: this can fail with an unchecked exception.

  10. isCurrentThreadBound# :: State# RealWorld -> (# State# RealWorld, Int# #)

    ghc-internal GHC.Internal.Exts

    No documentation available.

Page 535 of many | Previous | Next