qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4636] Add TLS sections.


From: Paul Brook
Subject: [Qemu-devel] [4636] Add TLS sections.
Date: Sat, 31 May 2008 16:21:35 +0000

Revision: 4636
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4636
Author:   pbrook
Date:     2008-05-31 16:21:33 +0000 (Sat, 31 May 2008)

Log Message:
-----------
Add TLS sections.

Modified Paths:
--------------
    trunk/i386.ld

Modified: trunk/i386.ld
===================================================================
--- trunk/i386.ld       2008-05-31 16:11:38 UTC (rev 4635)
+++ trunk/i386.ld       2008-05-31 16:21:33 UTC (rev 4636)
@@ -69,6 +69,8 @@
   /* Adjust the address for the data segment.  We want to adjust up to
      the same address within the page on the next page up.  */
   . = ALIGN(0x100000) + (. & (0x100000 - 1));
+  .tdata         : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
+  .tbss                  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
   .data    :
   {
     *(.data)






reply via email to

[Prev in Thread] Current Thread [Next in Thread]