summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-12 06:25:47 +0000
committerRoland McGrath <roland@gnu.org>2002-08-12 06:25:47 +0000
commite6f526809dbca3e772147b7bdedc3ebca8aff30e (patch)
tree8d01638a6124709150e9dd99bdd2073c1da27378
parent7a8bdff02c8bc80d5068eadf83302595d11f46d4 (diff)
* elf/tst-tlsmod4.c (in_dso): Insert a random library call before use
of the TLS macros, otherwise the compiler might not have initialized the PIC register yet when we use the PLT via asm. * elf/tst-tlsmod3.c (in_dso2): Likewise. * elf/tst-tlsmod2.c (in_dso): Likewise.
-rw-r--r--ChangeLog6
-rw-r--r--elf/tst-tlsmod2.c6
-rw-r--r--elf/tst-tlsmod3.c9
-rw-r--r--elf/tst-tlsmod4.c6
-rw-r--r--linuxthreads/ChangeLog10
-rw-r--r--linuxthreads/manager.c2
-rw-r--r--linuxthreads/pthread.c2
7 files changed, 35 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 670cd29b46..da29fd2091 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2002-08-11 Roland McGrath <roland@redhat.com>
+ * elf/tst-tlsmod4.c (in_dso): Insert a random library call before use
+ of the TLS macros, otherwise the compiler might not have initialized
+ the PIC register yet when we use the PLT via asm.
+ * elf/tst-tlsmod3.c (in_dso2): Likewise.
+ * elf/tst-tlsmod2.c (in_dso): Likewise.
+
* sunrpc/svc_authux.c (_svcauth_unix): Remove spurious printf (ugh!).
* sysdeps/i386/bits/byteswap.h (__bswap_16, __bswap_32, __bswap_64):
diff --git a/elf/tst-tlsmod2.c b/elf/tst-tlsmod2.c
index 6aec8120c0..1a4c73b8a0 100644
--- a/elf/tst-tlsmod2.c
+++ b/elf/tst-tlsmod2.c
@@ -12,9 +12,13 @@ COMMON_INT_DEF(foo);
int
in_dso (int n, int *caller_foop)
{
- int *foop = TLS_GD (foo);
+ int *foop;
int result = 0;
+ puts ("foo"); /* Make sure PLT is used before macros. */
+
+ foop = TLS_GD (foo);
+
if (caller_foop != NULL && foop != caller_foop)
{
printf ("callers address of foo differs: %p vs %p\n", caller_foop, foop);
diff --git a/elf/tst-tlsmod3.c b/elf/tst-tlsmod3.c
index 087c11b7a0..6b7fbccf4e 100644
--- a/elf/tst-tlsmod3.c
+++ b/elf/tst-tlsmod3.c
@@ -15,10 +15,15 @@ COMMON_INT_DEF(comm_n);
int
in_dso2 (void)
{
- int *foop = TLS_GD (foo);
+ int *foop;
int result = 0;
static int n;
- int *np = TLS_GD (comm_n);
+ int *np;
+
+ puts ("foo"); /* Make sure PLT is used before macros. */
+
+ foop = TLS_GD (foo);
+ np = TLS_GD (comm_n);
if (n != *np)
{
diff --git a/elf/tst-tlsmod4.c b/elf/tst-tlsmod4.c
index d40b3fdf61..c536303b47 100644
--- a/elf/tst-tlsmod4.c
+++ b/elf/tst-tlsmod4.c
@@ -12,9 +12,13 @@ COMMON_INT_DEF(baz);
int
in_dso (int n, int *caller_bazp)
{
- int *bazp = TLS_GD (baz);
+ int *bazp;
int result = 0;
+ puts ("foo"); /* Make sure PLT is used before macros. */
+
+ bazp = TLS_GD (baz);
+
if (caller_bazp != NULL && bazp != caller_bazp)
{
printf ("callers address of baz differs: %p vs %p\n", caller_bazp, bazp);
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index a6a2e9b7e1..67be250bd1 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,13 @@
+2002-08-11 Roland McGrath <roland@redhat.com>
+
+ * pthread.c (__pthread_initialize_manager): Initialize
+ p_header.data.tcb field of manager thread's descriptor.
+ (__pthread_initialize_minimal): Don't initialize p_header.data.self
+ field, already done by TLS_INIT_TP.
+
+ * manager.c (pthread_handle_create): Move p_header field initializers
+ together.
+
2002-08-08 Ulrich Drepper <drepper@redhat.com>
* sysdeps/i386/tls.h (TLS_DO_SET_THREAD_AREA): Removed.
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c
index 8ad9eb521b..655c7d64ab 100644
--- a/linuxthreads/manager.c
+++ b/linuxthreads/manager.c
@@ -644,6 +644,7 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
/* Initialize the thread descriptor. Elements which have to be
initialized to zero already have this value. */
new_thread->p_header.data.tcb = new_thread;
+ new_thread->p_header.data.self = new_thread;
new_thread->p_tid = new_thread_id;
new_thread->p_lock = &(__pthread_handles[sseg].h_lock);
new_thread->p_cancelstate = PTHREAD_CANCEL_ENABLE;
@@ -655,7 +656,6 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
#endif
new_thread->p_guardaddr = guardaddr;
new_thread->p_guardsize = guardsize;
- new_thread->p_header.data.self = new_thread;
new_thread->p_nr = sseg;
new_thread->p_inheritsched = attr ? attr->__inheritsched : 0;
/* Initialize the thread handle */
diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c
index cc4d26d304..c43176c40f 100644
--- a/linuxthreads/pthread.c
+++ b/linuxthreads/pthread.c
@@ -429,7 +429,6 @@ __pthread_initialize_minimal(void)
part of the TLS allocation. We have to initialize the data
structure by hand. This initialization must mirror the struct
definition above. */
- self->p_header.data.self = self;
self->p_nextlive = self->p_prevlive = self;
self->p_tid = PTHREAD_THREADS_MAX;
self->p_lock = &__pthread_handles[0].h_lock;
@@ -633,6 +632,7 @@ int __pthread_initialize_manager(void)
}
/* Initialize the descriptor. */
+ tcb->p_header.data.tcb = tcb;
tcb->p_header.data.self = tcb;
tcb->p_lock = &__pthread_handles[1].h_lock;
# ifndef HAVE___THREAD