[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r13458 - in /fsf/trunk/ports: ./ sysdeps/arm/ sysdeps/m68k/ sysdeps/mips/
- To: commits@xxxxxxxxxx
- Subject: [commits] r13458 - in /fsf/trunk/ports: ./ sysdeps/arm/ sysdeps/m68k/ sysdeps/mips/
- From: eglibc@xxxxxxxxxx
- Date: Tue, 12 Apr 2011 07:03:34 -0000
Author: eglibc
Date: Tue Apr 12 00:03:32 2011
New Revision: 13458
Log:
Import glibc-ports-mainline for 2011-04-12
Modified:
fsf/trunk/ports/ChangeLog.arm
fsf/trunk/ports/ChangeLog.m68k
fsf/trunk/ports/ChangeLog.mips
fsf/trunk/ports/sysdeps/arm/dl-tls.h
fsf/trunk/ports/sysdeps/m68k/dl-tls.h
fsf/trunk/ports/sysdeps/mips/dl-tls.h
Modified: fsf/trunk/ports/ChangeLog.arm
==============================================================================
--- fsf/trunk/ports/ChangeLog.arm (original)
+++ fsf/trunk/ports/ChangeLog.arm Tue Apr 12 00:03:32 2011
@@ -1,3 +1,7 @@
+2011-04-11 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
+
+ * sysdeps/arm/dl-tls.h (TLS_DTV_UNALLOCATED): Define.
+
2011-04-01 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
* sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Rename open_by_handle
Modified: fsf/trunk/ports/ChangeLog.m68k
==============================================================================
--- fsf/trunk/ports/ChangeLog.m68k (original)
+++ fsf/trunk/ports/ChangeLog.m68k Tue Apr 12 00:03:32 2011
@@ -1,3 +1,7 @@
+2011-04-11 Andreas Schwab <schwab@xxxxxxxxxxxxxx>
+
+ * sysdeps/m68k/dl-tls.h (TLS_DTV_UNALLOCATED): Define.
+
2011-04-03 Andreas Schwab <schwab@xxxxxxxxxxxxxx>
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Update comments.
Modified: fsf/trunk/ports/ChangeLog.mips
==============================================================================
--- fsf/trunk/ports/ChangeLog.mips (original)
+++ fsf/trunk/ports/ChangeLog.mips Tue Apr 12 00:03:32 2011
@@ -1,3 +1,7 @@
+2011-04-11 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
+
+ * sysdeps/mips/dl-tls.h (TLS_DTV_UNALLOCATED): Define.
+
2011-04-01 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Rename open_by_handle
Modified: fsf/trunk/ports/sysdeps/arm/dl-tls.h
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/dl-tls.h (original)
+++ fsf/trunk/ports/sysdeps/arm/dl-tls.h Tue Apr 12 00:03:32 2011
@@ -1,5 +1,5 @@
/* Thread-local storage handling in the ELF dynamic linker. ARM version.
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -27,3 +27,6 @@
extern void *__tls_get_addr (tls_index *ti);
+
+/* Value used for dtv entries for which the allocation is delayed. */
+#define TLS_DTV_UNALLOCATED ((void *) -1l)
Modified: fsf/trunk/ports/sysdeps/m68k/dl-tls.h
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/dl-tls.h (original)
+++ fsf/trunk/ports/sysdeps/m68k/dl-tls.h Tue Apr 12 00:03:32 2011
@@ -1,5 +1,5 @@
/* Thread-local storage handling in the ELF dynamic linker. M68K version.
- Copyright (C) 2010 Free Software Foundation, Inc.
+ Copyright (C) 2010, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Maxim Kuvyrkov <maxim@xxxxxxxxxxxxxxxx>, 2010.
@@ -44,5 +44,8 @@
extern void *__tls_get_addr (tls_index *ti);
-#define GET_ADDR_OFFSET (ti->ti_offset + TLS_DTV_OFFSET)
+#define GET_ADDR_OFFSET (ti->ti_offset + TLS_DTV_OFFSET)
#define __TLS_GET_ADDR(__ti) (__tls_get_addr (__ti) - TLS_DTV_OFFSET)
+
+/* Value used for dtv entries for which the allocation is delayed. */
+#define TLS_DTV_UNALLOCATED ((void *) -1l)
Modified: fsf/trunk/ports/sysdeps/mips/dl-tls.h
==============================================================================
--- fsf/trunk/ports/sysdeps/mips/dl-tls.h (original)
+++ fsf/trunk/ports/sysdeps/mips/dl-tls.h Tue Apr 12 00:03:32 2011
@@ -1,5 +1,5 @@
/* Thread-local storage handling in the ELF dynamic linker. MIPS version.
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -44,3 +44,6 @@
# define GET_ADDR_OFFSET (ti->ti_offset + TLS_DTV_OFFSET)
# define __TLS_GET_ADDR(__ti) (__tls_get_addr (__ti) - TLS_DTV_OFFSET)
+
+/* Value used for dtv entries for which the allocation is delayed. */
+#define TLS_DTV_UNALLOCATED ((void *) -1l)