Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-03-18 21:16:37 +0300
committerCorinna Vinschen <corinna@vinschen.de>2011-03-18 21:16:37 +0300
commitb8bdc60019e426b4f0cef85d5f02ba803467fbd3 (patch)
tree54c4cb8731557214b4276154a6f67d068b1d1af7 /winsup
parent4b7edd20f7c0ab9fdbe4a4e3b92c6c1cc4124015 (diff)
* cygwin.sc: Raise default cygheap size to 2 Megs.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/cygwin.sc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index e86481165..72ec96da4 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-18 Corinna Vinschen <corinna@vinschen.de>
+
+ * cygwin.sc: Raise default cygheap size to 2 Megs.
+
2011-03-18 Christopher Faylor <me.cygwin2011@cgf.cx>
* fhandler.h (DEFAULT_PIPEBUFSIZE): Reset to 64K.
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc
index ba4152909..966ea9733 100644
--- a/winsup/cygwin/cygwin.sc
+++ b/winsup/cygwin/cygwin.sc
@@ -103,7 +103,7 @@ SECTIONS
}
.cygheap ALIGN(__section_alignment__) :
{
- . = . + (1024 * 1024);
+ . = . + (2048 * 1024);
. = ALIGN(0x10000);
__cygheap_end = ABSOLUTE(.);
}