X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Foreign%2FPtr.hs;h=4344a9017e902226c72d3e68e84588fd6bf62108;hb=57e487c332d1f428ee5ff85dbb32730d25a58235;hp=7bbd4db66bb3d67890984fe5f847b12397356e26;hpb=d455d826ee9a3a9c5424389d58980669d5fdb73a;p=ghc-base.git diff --git a/Foreign/Ptr.hs b/Foreign/Ptr.hs index 7bbd4db..4344a90 100644 --- a/Foreign/Ptr.hs +++ b/Foreign/Ptr.hs @@ -1,35 +1,34 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Ptr -- Copyright : (c) The FFI task force 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : ffi@haskell.org -- Stability : provisional -- Portability : portable -- --- $Id: Ptr.hs,v 1.6 2002/03/20 15:38:36 simonmar Exp $ --- --- Pointer types. +-- This module provides typed pointers to foreign data. It is part +-- of the Foreign Function Interface (FFI) and will normally be +-- imported via the "Foreign" module. -- ----------------------------------------------------------------------------- module Foreign.Ptr ( - -------------------------------------------------------------------- - -- Data pointers. + + -- * Data pointers - Ptr(..), -- data Ptr a + Ptr, -- data Ptr a nullPtr, -- :: Ptr a castPtr, -- :: Ptr a -> Ptr b plusPtr, -- :: Ptr a -> Int -> Ptr b alignPtr, -- :: Ptr a -> Int -> Ptr a minusPtr, -- :: Ptr a -> Ptr b -> Int - -------------------------------------------------------------------- - -- Function pointers. + -- * Function pointers - FunPtr(..), -- data FunPtr a + FunPtr, -- data FunPtr a nullFunPtr, -- :: FunPtr a castFunPtr, -- :: FunPtr a -> FunPtr b castFunPtrToPtr, -- :: FunPtr a -> Ptr b @@ -51,9 +50,30 @@ import GHC.Show import Numeric #endif -#include "MachDeps.h" +#ifdef __NHC__ +import NHC.FFI + ( Ptr + , nullPtr + , castPtr + , plusPtr + , alignPtr + , minusPtr + , FunPtr + , nullFunPtr + , castFunPtr + , castFunPtrToPtr + , castPtrToFunPtr + , freeHaskellFunPtr + ) +#endif + +#ifdef __HUGS__ +import Hugs.Ptr +#endif #ifdef __GLASGOW_HASKELL__ +#include "MachDeps.h" + #if (WORD_SIZE_IN_BITS == 32 || WORD_SIZE_IN_BITS == 64) instance Show (Ptr a) where showsPrec p (Ptr a) rs = pad_out (showHex (word2Integer(int2Word#(addr2Int# a))) "") rs @@ -64,8 +84,11 @@ instance Show (Ptr a) where -- word2Integer :: Word# -> Integer (stolen from Word.lhs) word2Integer w = case word2Integer# w of (# s, d #) -> J# s d -#endif + +instance Show (FunPtr a) where + showsPrec p = showsPrec p . castFunPtrToPtr #endif foreign import ccall unsafe "freeHaskellFunctionPtr" freeHaskellFunPtr :: FunPtr a -> IO () +#endif