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
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-02-11 15:58:01 +0300
committerCorinna Vinschen <corinna@vinschen.de>2011-02-11 15:58:01 +0300
commit5ec0839c12fd572d476c16459a297df2e0c0d011 (patch)
tree7a263cbecd82e9c7e2106d014c5867edce41af1e /winsup/cygwin/cygwin.sc
parent7be671075d93f8ff08c59068a554db2c26f2bffd (diff)
* cygwin.sc: Raise default cygheap size to 1 Meg. Set alignment to
standard 64K.
Diffstat (limited to 'winsup/cygwin/cygwin.sc')
-rw-r--r--winsup/cygwin/cygwin.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc
index 78e388ed3..1a27f1a94 100644
--- a/winsup/cygwin/cygwin.sc
+++ b/winsup/cygwin/cygwin.sc
@@ -106,8 +106,8 @@ SECTIONS
{
__cygheap_mid = .;
*(.cygheap)
- . = . + (512 * 1024);
- . = ALIGN(512 * 1024);
+ . = . + (1024 * 1024);
+ . = ALIGN(0x10000);
}
__cygheap_end = ABSOLUTE(.);
__cygheap_end1 = __cygheap_mid + SIZEOF(.cygheap);