{-# LINE 1 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LANGUAGE ForeignFunctionInterface #-} {-# LINE 2 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# LINE 4 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LANGUAGE Trustworthy #-} {-# LINE 6 "libraries/unix/System/Posix/SharedMem.hsc" #-} ----------------------------------------------------------------------------- -- | -- Module : System.Posix.SharedMem -- Copyright : (c) Daniel Franke 2007 -- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental -- Portability : non-portable (requires POSIX) -- -- POSIX shared memory support. -- ----------------------------------------------------------------------------- module System.Posix.SharedMem (ShmOpenFlags(..), shmOpen, shmUnlink) where {-# LINE 25 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LINE 26 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LINE 27 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LINE 29 "libraries/unix/System/Posix/SharedMem.hsc" #-} import System.Posix.Types import System.Posix.Error import Foreign.C import Data.Bits data ShmOpenFlags = ShmOpenFlags { shmReadWrite :: Bool, -- ^ If true, open the shm object read-write rather than read-only. shmCreate :: Bool, -- ^ If true, create the shm object if it does not exist. shmExclusive :: Bool, -- ^ If true, throw an exception if the shm object already exists. shmTrunc :: Bool -- ^ If true, wipe the contents of the shm object after opening it. } -- | Open a shared memory object with the given name, flags, and mode. shmOpen :: String -> ShmOpenFlags -> FileMode -> IO Fd {-# LINE 67 "libraries/unix/System/Posix/SharedMem.hsc" #-} shmOpen = error "System.Posix.SharedMem:shm_open: not available" {-# LINE 69 "libraries/unix/System/Posix/SharedMem.hsc" #-} -- | Delete the shared memory object with the given name. shmUnlink :: String -> IO () {-# LINE 77 "libraries/unix/System/Posix/SharedMem.hsc" #-} shmUnlink = error "System.Posix.SharedMem:shm_unlink: not available" {-# LINE 79 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LINE 84 "libraries/unix/System/Posix/SharedMem.hsc" #-} {-# LINE 89 "libraries/unix/System/Posix/SharedMem.hsc" #-}