diff options
author | Christopher Faylor <me@cgf.cx> | 2001-01-31 15:06:06 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-01-31 15:06:06 +0000 |
commit | f8da1507583d5064ee73b6bd5786a027da7ed6c0 (patch) | |
tree | 07fd5b10c6463b947dcf53579fc0505f8b96d595 /winsup/cygwin/shared.cc | |
parent | 83443511130df643df9e0b094e817cdb5d488c01 (diff) | |
download | newlib-f8da1507583d5064ee73b6bd5786a027da7ed6c0.zip newlib-f8da1507583d5064ee73b6bd5786a027da7ed6c0.tar.gz newlib-f8da1507583d5064ee73b6bd5786a027da7ed6c0.tar.bz2 |
* shared.cc (shared_info::initialize): Reduce size of heap.
Diffstat (limited to 'winsup/cygwin/shared.cc')
-rw-r--r-- | winsup/cygwin/shared.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/shared.cc b/winsup/cygwin/shared.cc index 3c99e25..60a7f6d 100644 --- a/winsup/cygwin/shared.cc +++ b/winsup/cygwin/shared.cc @@ -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; |