[project @ 2005-04-11 14:43:06 by simonmar]
authorsimonmar <unknown>
Mon, 11 Apr 2005 14:43:06 +0000 (14:43 +0000)
committersimonmar <unknown>
Mon, 11 Apr 2005 14:43:06 +0000 (14:43 +0000)
Set the default minAllocAreaSize to 512k.  Caches are bigger these
days.

ghc/rts/RtsFlags.c

index 3219771..3b88496 100644 (file)
@@ -152,7 +152,7 @@ void initRtsFlagsDefaults(void)
     RtsFlags.GcFlags.maxStkSize                = (8 * 1024 * 1024) / sizeof(W_);
     RtsFlags.GcFlags.initialStkSize    = 1024 / sizeof(W_);
 
-    RtsFlags.GcFlags.minAllocAreaSize   = (256 * 1024)        / BLOCK_SIZE;
+    RtsFlags.GcFlags.minAllocAreaSize   = (512 * 1024)        / BLOCK_SIZE;
     RtsFlags.GcFlags.minOldGenSize      = (1024 * 1024)       / BLOCK_SIZE;
     RtsFlags.GcFlags.maxHeapSize       = 0;    /* off by default */
     RtsFlags.GcFlags.heapSizeSuggestion        = 0;    /* none */