[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 15:03:23 UTC 2010


The following commit has been merged in the master branch:
commit 1091061824747f492202b4f83149b60cdca9155f
Author: John Goerzen <jgoerzen at complete.org>
Date:   Mon Oct 10 18:46:03 2005 +0100

    Adjusted child code for MissingH namespace

diff --git a/MissingH/Threads/Child.hs b/MissingH/Threads/Child.hs
index 55a3ae5..d425f6f 100644
--- a/MissingH/Threads/Child.hs
+++ b/MissingH/Threads/Child.hs
@@ -1,5 +1,5 @@
 {- |
-   Module      :  Control.Concurrent.Child
+   Module      :  MissingH.Threads.Child
    Copyright   :  (c) 2005-02-10 by Peter Simons
    License     :  GPL2
 
@@ -14,7 +14,7 @@
    yourself. This is what this library does.
 -}
 
-module Control.Concurrent.Child
+module MissingH.Threads.Child
   ( Child(..)   --  = Child ThreadId (MVar a)
   , mkChild     --  :: Monoid a => ThreadId -> MVar a -> IO a -> IO ()
   , spawn       --  :: Monoid a => IO a -> IO (Child a)
diff --git a/MissingH/Threads/Timeout.hs b/MissingH/Threads/Timeout.hs
index daeb103..d4279e8 100644
--- a/MissingH/Threads/Timeout.hs
+++ b/MissingH/Threads/Timeout.hs
@@ -1,5 +1,5 @@
 {- |
-   Module      :  Control.Timeout
+   Module      :  MissingH.Threads.Timeout
    Copyright   :  (c) 2005-02-10 by Peter Simons
    License     :  GPL2
 
@@ -10,13 +10,13 @@
    Timeout support for 'IO' computations.
 -}
 
-module Control.Timeout
+module MissingH.Threads.Timeout
   ( Timeout     --  = Int
   , timeout     --  :: Timeout -> IO a -> IO (Maybe a)
   )
   where
 
-import Control.Concurrent.Child ( par )
+import MissingH.Threads.Child ( par )
 import Control.Concurrent ( threadDelay )
 
 -- |Timeouts are given in microseconds (@1\/10^6@ seconds).

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list