summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/cygwin.sc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-06-01 04:00:40 +0000
committerChristopher Faylor <me@cgf.cx>2005-06-01 04:00:40 +0000
commit5d4a672193117bd5109f517236e6649ec7b9a4ca (patch)
tree3533a6f71cf96963a04db8d17bfc657825eb653d /winsup/cygwin/cygwin.sc
parentce95c6407ef6ab1a60a1b1e2cd62ef4ae2081174 (diff)
downloadcygnal-5d4a672193117bd5109f517236e6649ec7b9a4ca.tar.gz
cygnal-5d4a672193117bd5109f517236e6649ec7b9a4ca.tar.bz2
cygnal-5d4a672193117bd5109f517236e6649ec7b9a4ca.zip
* cygheap.cc (cygheap_end): Remove bogus section attribute.
* cygwin.sc: Make __cygheap_mid absolute. Remove unused _cygheap_foo.
Diffstat (limited to 'winsup/cygwin/cygwin.sc')
-rw-r--r--winsup/cygwin/cygwin.sc3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc
index 6393dab9a..6b5df0dec 100644
--- a/winsup/cygwin/cygwin.sc
+++ b/winsup/cygwin/cygwin.sc
@@ -104,10 +104,9 @@ SECTIONS
__section_alignment__ = 64 * 1024;
.cygheap ALIGN(4096):
{
- __cygheap_mid = .;
+ __cygheap_mid = ABSOLUTE(.);
. = ALIGN(512 * 1024, 0x10000);
. += 8192; /* inexplicably needed for alignment on 64K boundary?!? */
-_cygheap_foo = .;
}
__cygheap_end = ABSOLUTE(.);
}