[commit: ghc] master: Fix comment (old file names '.hc' ) in libraries/ (26f5e60)
git at git.haskell.org
git at git.haskell.org
Mon Feb 6 02:25:18 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/26f5e60b7916587c093072b2b68f4260666ba992/ghc
>---------------------------------------------------------------
commit 26f5e60b7916587c093072b2b68f4260666ba992
Author: Takenobu Tani <takenobu.hs at gmail.com>
Date: Sun Feb 5 20:27:57 2017 -0500
Fix comment (old file names '.hc' ) in libraries/
There ware some old file names (.hc, ...) at comments.
* libraries/base/GHC/IO.hs
- StgMiscClosures.hc -> StgStartup.cmm
- Exceptions.hc -> Exception.cmm
- Schedule.c -> RaiseAsync.c
A comment of `(un)?blockAsyncExceptionszh_fast` in IO.hs may be old.
Since I don't understand it, I have not modified it yet.
Reviewers: mpickering, bgamari, austin, hvr
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3081
>---------------------------------------------------------------
26f5e60b7916587c093072b2b68f4260666ba992
libraries/base/GHC/IO.hs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libraries/base/GHC/IO.hs b/libraries/base/GHC/IO.hs
index 0744e3a..0737d19 100644
--- a/libraries/base/GHC/IO.hs
+++ b/libraries/base/GHC/IO.hs
@@ -61,10 +61,10 @@ system. The following list may or may not be exhaustive:
Compiler - types of various primitives in PrimOp.hs
-RTS - forceIO (StgMiscClosures.hc)
+RTS - forceIO (StgStartup.cmm)
- catchzh_fast, (un)?blockAsyncExceptionszh_fast, raisezh_fast
- (Exceptions.hc)
- - raiseAsync (Schedule.c)
+ (Exception.cmm)
+ - raiseAsync (RaiseAsync.c)
Prelude - GHC.IO.hs, and several other places including
GHC.Exception.hs.
More information about the ghc-commits
mailing list