* cygheap.cc (cygheap_end): Remove bogus section attribute.

* cygwin.sc: Make __cygheap_mid absolute.  Remove unused _cygheap_foo.
This commit is contained in:
Christopher Faylor
2005-06-01 04:00:40 +00:00
parent ce95c6407e
commit 5d4a672193
3 changed files with 7 additions and 3 deletions

View File

@@ -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(.);
}