]> sourceware.org Git - newlib-cygwin.git/commitdiff
* cygwin.sc: Set alignment of .cygheap section to 64K.
authorCorinna Vinschen <corinna@vinschen.de>
Fri, 18 Feb 2011 16:15:20 +0000 (16:15 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Fri, 18 Feb 2011 16:15:20 +0000 (16:15 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/cygwin.sc

index a8cabeaee0ebe85091e4064fbbefa8470b673966..6b1a79d1db6772751e1282a502af71685355f36b 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-18  Corinna Vinschen  <corinna@vinschen.de>
+
+       * cygwin.sc: Set alignment of .cygheap section to 64K.
+
 2011-02-15  Corinna Vinschen  <corinna@vinschen.de>
 
        * spawn.cc (spawn_guts): Only set PID_NOTCYGWIN in _P_OVERLAY mode.
index ba45441f6792c7c943cd2b087e2a8998c15a9951..ba41529093647272dfca4a32679cd337a6cd4e99 100644 (file)
@@ -104,6 +104,7 @@ SECTIONS
   .cygheap ALIGN(__section_alignment__) :
   {
     . = . + (1024 * 1024);
+    . = ALIGN(0x10000);
     __cygheap_end = ABSOLUTE(.);
   }
   /DISCARD/ :
This page took 0.033174 seconds and 5 git commands to generate.