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>2007-01-12 22:40:20 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-01-12 22:40:20 +0300
commitf51b3965797322a0d8076a08114872f76b748fd2 (patch)
tree5455bf884ad08e5320259e5c932336f2555e94c0 /winsup/cygwin/cygwin.sc
parent5f77729c301d88d195aaa2a0758181ac8903e9b2 (diff)
* cygheap.cc (_csbrk): Fix off-by-one error.
* cygwin.sc: Give .cygheap a minimum size of 512K.
Diffstat (limited to 'winsup/cygwin/cygwin.sc')
-rw-r--r--winsup/cygwin/cygwin.sc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc
index 58ee37664..6247e86cc 100644
--- a/winsup/cygwin/cygwin.sc
+++ b/winsup/cygwin/cygwin.sc
@@ -106,7 +106,7 @@ SECTIONS
{
__cygheap_mid = .;
*(.cygheap)
- . = . + 1;
+ . = . + (512 * 1024);
. = ALIGN(512 * 1024);
}
__cygheap_end = ABSOLUTE(.);