Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 9 Oct 2002 18:21:41 +0000 (18:21 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 9 Oct 2002 18:21:41 +0000 (18:21 +0000)
* sysdeps/generic/bits/libc-tsd.h [!(USE_TLS && HAVE___THREAD)]
(__libc_tsd_address): Use correct variable name.
Patch by sStefan Jones <tefan.jones@multigig.com>.

ChangeLog
bits/libc-tsd.h
sysdeps/generic/bits/libc-tsd.h

index 1ec74b2..38b1d95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2002-10-09  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/generic/bits/libc-tsd.h [!(USE_TLS && HAVE___THREAD)]
+       (__libc_tsd_address): Use correct variable name.
+       Patch by sStefan Jones <tefan.jones@multigig.com>.
+
        * sysdeps/unix/sysv/linux/ia64/getcontext.S: Add missing ;;.
        Reported by edwardsg@sgi.com [PR libc/4678].
 
index ce25601..1954b20 100644 (file)
@@ -60,7 +60,7 @@
 #else
 # define __libc_tsd_define(CLASS, KEY) CLASS void *__libc_tsd_##KEY##_data;
 
-# define __libc_tsd_address(KEY)       (&__libc_tsd_##KEY)
+# define __libc_tsd_address(KEY)       (&__libc_tsd_##KEY##_data)
 # define __libc_tsd_get(KEY)           (__libc_tsd_##KEY##_data)
 # define __libc_tsd_set(KEY, VALUE)    (__libc_tsd_##KEY##_data = (VALUE))
 #endif
index ce25601..1954b20 100644 (file)
@@ -60,7 +60,7 @@
 #else
 # define __libc_tsd_define(CLASS, KEY) CLASS void *__libc_tsd_##KEY##_data;
 
-# define __libc_tsd_address(KEY)       (&__libc_tsd_##KEY)
+# define __libc_tsd_address(KEY)       (&__libc_tsd_##KEY##_data)
 # define __libc_tsd_get(KEY)           (__libc_tsd_##KEY##_data)
 # define __libc_tsd_set(KEY, VALUE)    (__libc_tsd_##KEY##_data = (VALUE))
 #endif