* shared.cc (shared_info::initialize): Reduce size of heap.

This commit is contained in:
Christopher Faylor 2001-01-31 15:06:06 +00:00
parent 8344351113
commit f8da150758
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Jan 31 10:04:58 2001 Christopher Faylor <cgf@cygnus.com>
* shared.cc (shared_info::initialize): Reduce size of heap.
Wed Jan 31 13:22:00 2001 Corinna Vinschen <corinna@vinschen.de>
* include/sys/resource.h: Fix typo.

View File

@ -128,7 +128,7 @@ shared_info::initialize ()
/* FIXME: We should not be restricted to a fixed size heap no matter
what the fixed size is. */
heap_chunk_in_mb = reg.get_int ("heap_chunk_in_mb", 1024);
heap_chunk_in_mb = reg.get_int ("heap_chunk_in_mb", 256);
if (heap_chunk_in_mb < 4)
{
heap_chunk_in_mb = 4;