blob: 5fdb9fba86e2da40d2acc13f25559b8385b7e16e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE Trustworthy #-}
{-# OPTIONS_HADDOCK not-home #-}
-----------------------------------------------------------------------------
-- |
-- Module : GHC.Conc.WinIO
-- Copyright : (c) The University of Glasgow, 1994-2002
-- License : see libraries/base/LICENSE
--
-- Maintainer : cvs-ghc@haskell.org
-- Stability : internal
-- Portability : non-portable (GHC extensions)
--
-- Windows I/O Completion Port interface to the one defined in
-- GHC.Event.Windows.
--
-- This module is an indirection to keep things in the same structure as before
-- but also to keep the new code where the actual I/O manager is. As such it
-- just re-exports GHC.Event.Windows.Thread
--
-----------------------------------------------------------------------------
-- #not-home
module GHC.Conc.WinIO
( module GHC.Event.Windows.Thread ) where
import GHC.Event.Windows.Thread
|