From: sof Date: Fri, 31 Oct 2003 16:21:27 +0000 (+0000) Subject: [project @ 2003-10-31 16:21:27 by sof] X-Git-Tag: Approx_11550_changesets_converted~299 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=30b0cf61ad5725d4677f6476beeeda98912f5375;p=ghc-hetmet.git [project @ 2003-10-31 16:21:27 by sof] win32: in case of a heap overflow, report this via heapOverflow(), and not by panic'ing. merge to stable. --- diff --git a/ghc/rts/MBlock.c b/ghc/rts/MBlock.c index 8352d07..d0ead3f 100644 --- a/ghc/rts/MBlock.c +++ b/ghc/rts/MBlock.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: MBlock.c,v 1.49 2003/09/23 17:07:39 sof Exp $ + * $Id: MBlock.c,v 1.50 2003/10/31 16:21:27 sof Exp $ * * (c) The GHC Team 1998-1999 * @@ -271,7 +271,13 @@ getMBlocks(nat n) if ( (base_non_committed == 0) || (next_request + size > end_non_committed) ) { if (base_non_committed) { - barf("RTS exhausted max heap size (%d bytes)\n", size_reserved_pool); + /* Tacky, but if no user-provided -M option is in effect, + * set it to the default (==256M) in time for the heap overflow PSA. + */ + if (RtsFlags.GcFlags.maxHeapSize == 0) { + RtsFlags.GcFlags.maxHeapSize = size_reserved_pool / BLOCK_SIZE; + } + heapOverflow(); } if (RtsFlags.GcFlags.maxHeapSize != 0) { size_reserved_pool = BLOCK_SIZE * RtsFlags.GcFlags.maxHeapSize;