Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. MmapException :: MmapException

    shared-memory MMAP

    No documentation available.

  2. newtype MmapFlags

    shared-memory MMAP

    An MmapSharedFlag with one or more MmapOptionalFlags.

  3. MmapFlags :: CInt -> MmapFlags

    shared-memory MMAP

    No documentation available.

  4. newtype MmapOptionalFlag

    shared-memory MMAP

    And MmapSharedFlag with one or more MmapOptionalFlags.

  5. MmapOptionalFlag :: CInt -> MmapOptionalFlag

    shared-memory MMAP

    No documentation available.

  6. newtype MmapSharedFlag

    shared-memory MMAP

    Determines whether updates to the mapping are visible to other processes mapping the same region, and whether updates are carried through to the underlying file. This behavior is determined by including exactly one of mapShared and mapPrivate.

  7. MmapSharedFlag :: CInt -> MmapSharedFlag

    shared-memory MMAP

    No documentation available.

  8. data MunmapException

    shared-memory MMAP

    Exception thrown when munmap fails.

  9. MunmapException :: CSize -> Ptr () -> MunmapException

    shared-memory MMAP

    No documentation available.

  10. c_mmap :: Ptr () -> CSize -> ProtOption -> MmapFlags -> Fd -> COff -> IO (Ptr ())

    shared-memory MMAP

    mmap - map files or devices into memory. The returned memory should be freed with c_munmap after use. This is the raw C function, and its return value must be checked according to man mmap. See mmap for a variant that turns bad return values into exceptions.

Page 1217 of many | Previous | Next