summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Event.hs
diff options
context:
space:
mode:
authorAndreas Voellmy <andreas.voellmy@gmail.com>2012-12-20 00:41:00 -0500
committerJohan Tibell <johan.tibell@gmail.com>2013-02-11 21:38:04 -0800
commit38548ef5e6d42df370ea687285193762919b80c3 (patch)
tree54d94be69777866c2798ebe9062cf330e6c154b5 /libraries/base/GHC/Event.hs
parente963524fd93130103b4161c0faf9475054262f1a (diff)
downloadhaskell-38548ef5e6d42df370ea687285193762919b80c3.tar.gz
Separated the IO manager into a timer manager and a file IO manager.
This is a preliminary patch; ultimately the single file IO manager will be replaced by per-capability managers.
Diffstat (limited to 'libraries/base/GHC/Event.hs')
-rw-r--r--libraries/base/GHC/Event.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/base/GHC/Event.hs b/libraries/base/GHC/Event.hs
index 257412fa48..05104097b7 100644
--- a/libraries/base/GHC/Event.hs
+++ b/libraries/base/GHC/Event.hs
@@ -14,6 +14,7 @@ module GHC.Event
-- * Creation
, getSystemEventManager
+ , getSystemTimerManager
-- * Registering interest in I/O events
, Event
@@ -36,5 +37,5 @@ module GHC.Event
) where
import GHC.Event.Manager
-import GHC.Event.Thread (getSystemEventManager)
+import GHC.Event.Thread (getSystemEventManager, getSystemTimerManager)