[commit: ghc] master: Export `TimerManager` from GHC.Event (re #9165) (fe59334)
git at git.haskell.org
git at git.haskell.org
Wed Jun 4 07:47:58 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/fe59334988fea384b119b7ef8372147b5c246bbf/ghc
>---------------------------------------------------------------
commit fe59334988fea384b119b7ef8372147b5c246bbf
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date: Wed Jun 4 09:45:27 2014 +0200
Export `TimerManager` from GHC.Event (re #9165)
This just addresses the specific issue raised in #9165. However, I've noticed
the Haddock comments need to be improved, which will be addressed by a separate
commit.
Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>
>---------------------------------------------------------------
fe59334988fea384b119b7ef8372147b5c246bbf
libraries/base/GHC/Event.hs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libraries/base/GHC/Event.hs b/libraries/base/GHC/Event.hs
index b49645e..9746bc7 100644
--- a/libraries/base/GHC/Event.hs
+++ b/libraries/base/GHC/Event.hs
@@ -11,6 +11,7 @@
module GHC.Event
( -- * Types
EventManager
+ , TimerManager
-- * Creation
, getSystemEventManager
@@ -39,6 +40,6 @@ module GHC.Event
import GHC.Event.Manager
import GHC.Event.TimerManager (TimeoutCallback, TimeoutKey, registerTimeout,
- updateTimeout, unregisterTimeout)
+ updateTimeout, unregisterTimeout, TimerManager)
import GHC.Event.Thread (getSystemEventManager, getSystemTimerManager)
More information about the ghc-commits
mailing list