diff options
author | Andreas Klebinger <klebinger.andreas@gmx.at> | 2020-06-22 14:02:32 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-07-15 16:41:03 -0400 |
commit | 0fafa2eb45d9283526c79f810476a369af21bf3b (patch) | |
tree | b511da70e3ce617c377c52e15402ec7d236ff80d /libraries | |
parent | cf37ce3499a0367faf7fcaf014d8350e5864fe7a (diff) | |
download | haskell-0fafa2eb45d9283526c79f810476a369af21bf3b.tar.gz |
winio: Rename GHC.Conc.IOCP -> GHC.Conc.WinIO
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/GHC/Conc/WinIO.hs (renamed from libraries/base/GHC/Conc/IOCP.hs) | 4 | ||||
-rw-r--r-- | libraries/base/GHC/Conc/Windows.hs | 2 | ||||
-rw-r--r-- | libraries/base/base.cabal | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libraries/base/GHC/Conc/IOCP.hs b/libraries/base/GHC/Conc/WinIO.hs index 299e4fed91..94e7824f79 100644 --- a/libraries/base/GHC/Conc/IOCP.hs +++ b/libraries/base/GHC/Conc/WinIO.hs @@ -5,7 +5,7 @@ ----------------------------------------------------------------------------- -- | --- Module : GHC.Conc.IOCP +-- Module : GHC.Conc.WinIO -- Copyright : (c) The University of Glasgow, 1994-2002 -- License : see libraries/base/LICENSE -- @@ -23,7 +23,7 @@ ----------------------------------------------------------------------------- -- #not-home -module GHC.Conc.IOCP +module GHC.Conc.WinIO ( module GHC.Event.Windows.Thread ) where import GHC.Event.Windows.Thread diff --git a/libraries/base/GHC/Conc/Windows.hs b/libraries/base/GHC/Conc/Windows.hs index 5be07065e6..6c672711a5 100644 --- a/libraries/base/GHC/Conc/Windows.hs +++ b/libraries/base/GHC/Conc/Windows.hs @@ -45,7 +45,7 @@ module GHC.Conc.Windows import GHC.Base import GHC.Conc.Sync import qualified GHC.Conc.POSIX as POSIX -import qualified GHC.Conc.IOCP as WINIO +import qualified GHC.Conc.WinIO as WINIO import GHC.Event.Windows.ConsoleEvent import GHC.IO.SubSystem ((<!>)) import GHC.Ptr diff --git a/libraries/base/base.cabal b/libraries/base/base.cabal index 164ba84ef5..15adf7252e 100644 --- a/libraries/base/base.cabal +++ b/libraries/base/base.cabal @@ -387,7 +387,7 @@ Library GHC.IO.Encoding.CodePage.API GHC.IO.Encoding.CodePage.Table GHC.Conc.Windows - GHC.Conc.IOCP + GHC.Conc.WinIO GHC.Conc.POSIX GHC.Conc.POSIX.Const GHC.Windows |