From fa23cee469fdaf28d10bce331fb7cccaccf3dfba Mon Sep 17 00:00:00 2001 From: Don Stewart Date: Mon, 3 Mar 2008 19:44:54 +0000 Subject: [PATCH] untabify --- Foreign/Concurrent.hs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Foreign/Concurrent.hs b/Foreign/Concurrent.hs index 664fa07..13e4b46 100644 --- a/Foreign/Concurrent.hs +++ b/Foreign/Concurrent.hs @@ -15,22 +15,22 @@ module Foreign.Concurrent ( - -- * Concurrency-based 'ForeignPtr' operations + -- * Concurrency-based 'ForeignPtr' operations - -- | These functions generalize their namesakes in the portable - -- "Foreign.ForeignPtr" module by allowing arbitrary 'IO' actions - -- as finalizers. These finalizers necessarily run in a separate - -- thread, cf. /Destructors, Finalizers and Synchronization/, - -- by Hans Boehm, /POPL/, 2003. + -- | These functions generalize their namesakes in the portable + -- "Foreign.ForeignPtr" module by allowing arbitrary 'IO' actions + -- as finalizers. These finalizers necessarily run in a separate + -- thread, cf. /Destructors, Finalizers and Synchronization/, + -- by Hans Boehm, /POPL/, 2003. - newForeignPtr, - addForeignPtrFinalizer, + newForeignPtr, + addForeignPtrFinalizer, ) where #ifdef __GLASGOW_HASKELL__ -import GHC.IOBase ( IO ) -import GHC.Ptr ( Ptr ) -import GHC.ForeignPtr ( ForeignPtr ) +import GHC.IOBase ( IO ) +import GHC.Ptr ( Ptr ) +import GHC.ForeignPtr ( ForeignPtr ) import qualified GHC.ForeignPtr #endif -- 1.7.10.4