summaryrefslogtreecommitdiff
path: root/libraries/base
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base')
-rw-r--r--libraries/base/GHC/Conc/Sync.hs2
-rw-r--r--libraries/base/GHC/ExecutionStack/Internal.hsc2
-rw-r--r--libraries/base/cbits/inputReady.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/libraries/base/GHC/Conc/Sync.hs b/libraries/base/GHC/Conc/Sync.hs
index ecae88cfc5..c51afb9d83 100644
--- a/libraries/base/GHC/Conc/Sync.hs
+++ b/libraries/base/GHC/Conc/Sync.hs
@@ -570,7 +570,7 @@ threadStatus (ThreadId t) = IO $ \s ->
case threadStatus# t s of
(# s', stat, _cap, _locked #) -> (# s', mk_stat (I# stat) #)
where
- -- NB. keep these in sync with includes/rts/Constants.h
+ -- NB. keep these in sync with rts/include/rts/Constants.h
mk_stat 0 = ThreadRunning
mk_stat 1 = ThreadBlocked BlockedOnMVar
mk_stat 2 = ThreadBlocked BlockedOnBlackHole
diff --git a/libraries/base/GHC/ExecutionStack/Internal.hsc b/libraries/base/GHC/ExecutionStack/Internal.hsc
index 46deccbd73..87b2e41900 100644
--- a/libraries/base/GHC/ExecutionStack/Internal.hsc
+++ b/libraries/base/GHC/ExecutionStack/Internal.hsc
@@ -41,7 +41,7 @@ import Foreign.Marshal.Alloc (allocaBytes)
import Foreign.Storable (Storable(..))
import System.IO.Unsafe (unsafePerformIO, unsafeInterleaveIO)
--- N.B. See includes/rts/Libdw.h for notes on stack representation.
+-- N.B. See rts/include/rts/Libdw.h for notes on stack representation.
-- | A location in the original program source.
data SrcLoc = SrcLoc { sourceFile :: String
diff --git a/libraries/base/cbits/inputReady.c b/libraries/base/cbits/inputReady.c
index 44e6dfc605..46b5577cfc 100644
--- a/libraries/base/cbits/inputReady.c
+++ b/libraries/base/cbits/inputReady.c
@@ -21,8 +21,8 @@
#endif
/* select and supporting types is not Posix */
-/* #include "rts/PosixSource.h" */
-#include "Rts.h"
+/* #include <rts/PosixSource.h> */
+#include <Rts.h>
#include <limits.h>
#include <stdbool.h>
#include "HsBase.h"