summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonm <unknown>1998-12-14 14:57:28 +0000
committersimonm <unknown>1998-12-14 14:57:28 +0000
commit9f6812b3c7e5d652f4d3a2e2cf689cdb60d4766e (patch)
tree182f9338a274a44200c2590a0ce1944409bd33e0
parent688c1dd362dad4fa36cbec652db2393a1949e89d (diff)
downloadhaskell-9f6812b3c7e5d652f4d3a2e2cf689cdb60d4766e.tar.gz
[project @ 1998-12-14 14:57:28 by simonm]
fix out of date references to header files.
-rw-r--r--ghc/docs/users_guide/runtime_control.vsgml5
1 files changed, 3 insertions, 2 deletions
diff --git a/ghc/docs/users_guide/runtime_control.vsgml b/ghc/docs/users_guide/runtime_control.vsgml
index 0fb53f337b..19967ec53c 100644
--- a/ghc/docs/users_guide/runtime_control.vsgml
+++ b/ghc/docs/users_guide/runtime_control.vsgml
@@ -254,7 +254,8 @@ default heap and/or stack size that is greater than the default. For
example, to set @-H8m -K1m@:
<tscreen><verb>
-#include "rtsdefs.h"
+#include "Rts.h"
+#include "RtsFlags.h"
void defaultsHook (void) {
RTSflags.GcFlags.stksSize = 1000002 / sizeof(W_);
RTSflags.GcFlags.heapSize = 8000002 / sizeof(W_);
@@ -263,7 +264,7 @@ void defaultsHook (void) {
Don't use powers of two for heap/stack sizes: these are more likely to
interact badly with direct-mapped caches. The full set of flags is
-defined in @ghc/includes/RtsFlags.lh@ the the GHC source tree.
+defined in @ghc/rts/RtsFlags.h@ the the GHC source tree.
You can also change the messages printed when the runtime system
``blows up,'' e.g., on stack overflow. The hooks for these are as