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.
MmapException :: MmapExceptionshared-memory MMAP No documentation available.
-
shared-memory MMAP An MmapSharedFlag with one or more MmapOptionalFlags.
MmapFlags :: CInt -> MmapFlagsshared-memory MMAP No documentation available.
-
shared-memory MMAP And MmapSharedFlag with one or more MmapOptionalFlags.
MmapOptionalFlag :: CInt -> MmapOptionalFlagshared-memory MMAP No documentation available.
-
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.
MmapSharedFlag :: CInt -> MmapSharedFlagshared-memory MMAP No documentation available.
-
shared-memory MMAP Exception thrown when munmap fails.
MunmapException :: CSize -> Ptr () -> MunmapExceptionshared-memory MMAP No documentation available.
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.