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. killThread# :: ThreadId# -> a -> State# RealWorld -> State# RealWorld

    ghc-internal GHC.Internal.Exts

    No documentation available.

  2. labelThread# :: ThreadId# -> ByteArray# -> State# RealWorld -> State# RealWorld

    ghc-internal GHC.Internal.Exts

    Set the label of the given thread. The ByteArray# should contain a UTF-8-encoded string.

  3. listThreads# :: State# RealWorld -> (# State# RealWorld, Array# ThreadId# #)

    ghc-internal GHC.Internal.Exts

    Returns an array of the threads started by the program. Note that this threads which have finished execution may or may not be present in this list, depending upon whether they have been collected by the garbage collector.

  4. myThreadId# :: State# RealWorld -> (# State# RealWorld, ThreadId# #)

    ghc-internal GHC.Internal.Exts

    No documentation available.

  5. setThreadAllocationCounter# :: Int64# -> State# RealWorld -> State# RealWorld

    ghc-internal GHC.Internal.Exts

    Sets the allocation counter for the current thread to the given value.

  6. threadLabel# :: ThreadId# -> State# RealWorld -> (# State# RealWorld, Int#, ByteArray# #)

    ghc-internal GHC.Internal.Exts

    Get the label of the given thread. Morally of type ThreadId# -> IO (Maybe ByteArray#), with a 1# tag denoting Just.

  7. threadStatus# :: ThreadId# -> State# RealWorld -> (# State# RealWorld, Int#, Int#, Int# #)

    ghc-internal GHC.Internal.Exts

    Get the status of the given thread. Result is (ThreadStatus, Capability, Locked) where ThreadStatus is one of the status constants defined in rts/Constants.h, Capability is the number of the capability which currently owns the thread, and Locked is a boolean indicating whether the thread is bound to that capability.

  8. waitRead# :: Int# -> State# d -> State# d

    ghc-internal GHC.Internal.Exts

    Block until input is available on specified file descriptor.

  9. eALREADY :: Errno

    ghc-internal GHC.Internal.Foreign.C.Error

    No documentation available.

  10. fillReadBuffer :: BufferedIO dev => dev -> Buffer Word8 -> IO (Int, Buffer Word8)

    ghc-internal GHC.Internal.IO.BufferedIO

    reads bytes into the buffer, blocking if there are no bytes available. Returns the number of bytes read (zero indicates end-of-file), and the new buffer.

Page 536 of many | Previous | Next