This is the mail archive of the
glibc-cvs@sourceware.org
mailing list for the glibc project.
Community source repository for glibc add-on ports branch, master, updated. glibc-2.13-29-g04c46a1
- From: schwab at sourceware dot org
- To: glibc-cvs at sourceware dot org
- Date: 11 Apr 2011 14:03:52 -0000
- Subject: Community source repository for glibc add-on ports branch, master, updated. glibc-2.13-29-g04c46a1
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Community source repository for glibc add-on ports".
The branch, master has been updated
via 04c46a1ce78ebc099f6ad9791653369cdef3c9cd (commit)
from ed36e1de02d8986bb42e5cf58154acf501eedeec (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=04c46a1ce78ebc099f6ad9791653369cdef3c9cd
commit 04c46a1ce78ebc099f6ad9791653369cdef3c9cd
Author: Andreas Schwab <schwab@linux-m68k.org>
Date: Mon Apr 11 12:59:31 2011 +0200
m68k: define TLS_DTV_UNALLOCATED
diff --git a/ChangeLog.m68k b/ChangeLog.m68k
index ad78ade..f54a74c 100644
--- a/ChangeLog.m68k
+++ b/ChangeLog.m68k
@@ -1,3 +1,7 @@
+2011-04-11 Andreas Schwab <schwab@linux-m68k.org>
+
+ * sysdeps/m68k/dl-tls.h (TLS_DTV_UNALLOCATED): Define.
+
2011-04-03 Andreas Schwab <schwab@linux-m68k.org>
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Update comments.
diff --git a/sysdeps/m68k/dl-tls.h b/sysdeps/m68k/dl-tls.h
index f2ce998..cebdc2d 100644
--- a/sysdeps/m68k/dl-tls.h
+++ b/sysdeps/m68k/dl-tls.h
@@ -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@codesourcery.com>, 2010.
@@ -44,5 +44,8 @@ typedef struct
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)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog.m68k | 4 ++++
sysdeps/m68k/dl-tls.h | 7 +++++--
2 files changed, 9 insertions(+), 2 deletions(-)
hooks/post-receive
--
Community source repository for glibc add-on ports