diff options
author | Roland McGrath <roland@gnu.org> | 2005-03-05 19:28:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-03-05 19:28:17 +0000 |
commit | 3ff37e899a3fbb0c21ab6a2c5ab126b419326071 (patch) | |
tree | 7b7089be3c94516e8d241712b8fd209ce07116cf /linuxthreads/sysdeps | |
parent | c440fa7584820d27459bf5bc3a3d697eb495d96b (diff) | |
download | glibc-3ff37e899a3fbb0c21ab6a2c5ab126b419326071.tar.gz glibc-3ff37e899a3fbb0c21ab6a2c5ab126b419326071.tar.xz glibc-3ff37e899a3fbb0c21ab6a2c5ab126b419326071.zip |
* Makerules ($(inst_libdir)/libc.so): Use $(slibdir) instead of
$(inst_slibdir) in AS_NEEDED directive.
Diffstat (limited to 'linuxthreads/sysdeps')
-rw-r--r-- | linuxthreads/sysdeps/powerpc/tcb-offsets.sym | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/powerpc/tcb-offsets.sym b/linuxthreads/sysdeps/powerpc/tcb-offsets.sym index b526b62336..7c5cca01ea 100644 --- a/linuxthreads/sysdeps/powerpc/tcb-offsets.sym +++ b/linuxthreads/sysdeps/powerpc/tcb-offsets.sym @@ -8,7 +8,7 @@ -- Abuse tls.h macros to derive offsets relative to the thread register. # undef __thread_register # define __thread_register ((void *) 0) -# define thread_offsetof(mem) ((void *) &THREAD_SELF->p_##mem - (void *) 0) +# define thread_offsetof(mem) ((ptrdiff_t) THREAD_SELF + offsetof (struct _pthread_descr_struct, p_##mem)) # else |