[project @ 2000-05-25 12:41:14 by simonpj]
[ghc-hetmet.git] / ghc / compiler / main / Constants.lhs
index f67e007..771b513 100644 (file)
@@ -64,6 +64,8 @@ module Constants (
        iNT64_SIZE,
        wORD64_SIZE,
        
+       bLOCK_SIZE,
+
        interfaceFileFormatVersion
 
     ) where
@@ -205,8 +207,9 @@ wORD64_SIZE    = (WORD64_SIZE   :: Int)
 iNT64_SIZE     = (INT64_SIZE   :: Int)
 \end{code}
 
-The version of the interface file format we're
-using:
+The version of the interface file format we're using.  It's propagated
+here by a devious route from ghc/mk/version.mk.  See comments
+there for what it means.
 
 \begin{code}
 interfaceFileFormatVersion :: Int
@@ -219,3 +222,9 @@ area is has available.
 \begin{code}
 rESERVED_C_STACK_BYTES = (RESERVED_C_STACK_BYTES :: Int)
 \end{code}
+
+Size of a storage manager block (in bytes).
+
+\begin{code}
+bLOCK_SIZE = (BLOCK_SIZE :: Int)
+\end{code}