OSDN Git Service

* shared.cc (shared_info::initialize): Reduce size of heap.
authorcgf <cgf>
Wed, 31 Jan 2001 15:06:06 +0000 (15:06 +0000)
committercgf <cgf>
Wed, 31 Jan 2001 15:06:06 +0000 (15:06 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/shared.cc

index 28cfe71..6708d7e 100644 (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.
index 3c99e25..60a7f6d 100644 (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;