[project @ 2001-10-01 11:09:02 by simonmar]
authorsimonmar <unknown>
Mon, 1 Oct 2001 11:09:02 +0000 (11:09 +0000)
committersimonmar <unknown>
Mon, 1 Oct 2001 11:09:02 +0000 (11:09 +0000)
Actually bomb out with an error message if the maximum heap size is
smaller than the minimum allocation area size.

ghc/rts/Storage.c

index 8cba094..134106d 100644 (file)
@@ -1,5 +1,5 @@
 /* -----------------------------------------------------------------------------
- * $Id: Storage.c,v 1.50 2001/08/30 10:21:40 simonmar Exp $
+ * $Id: Storage.c,v 1.51 2001/10/01 11:09:02 simonmar Exp $
  *
  * (c) The GHC Team, 1998-1999
  *
@@ -89,6 +89,13 @@ initStorage( void )
     RtsFlags.GcFlags.maxHeapSize = RtsFlags.GcFlags.heapSizeSuggestion;
   }
 
+  if (RtsFlags.GcFlags.maxHeapSize != 0 &&
+      RtsFlags.GcFlags.minAllocAreaSize > 
+      RtsFlags.GcFlags.maxHeapSize) {
+      prog_belch("maximum heap size (-M) is smaller than minimum alloc area size (-A)");
+      exit(1);
+  }
+
   initBlockAllocator();
   
   /* allocate generation info array */