diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-09-28 17:41:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-09-28 17:41:37 +0000 |
commit | 891f199305f611de9a0c7cb8d0587167754cbfa4 (patch) | |
tree | eda0a27a045adeb04b982606b282b6f142232089 /linuxthreads_db | |
parent | 1a1495c091472633032c7c890aa1a8ab30b7e38d (diff) | |
download | glibc-891f199305f611de9a0c7cb8d0587167754cbfa4.tar.gz glibc-891f199305f611de9a0c7cb8d0587167754cbfa4.tar.xz glibc-891f199305f611de9a0c7cb8d0587167754cbfa4.zip |
(td_thr_tls_get_addr): Fix reference to dtv.
Diffstat (limited to 'linuxthreads_db')
-rw-r--r-- | linuxthreads_db/td_thr_tls_get_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads_db/td_thr_tls_get_addr.c b/linuxthreads_db/td_thr_tls_get_addr.c index 2808e8380e..e140b77dc1 100644 --- a/linuxthreads_db/td_thr_tls_get_addr.c +++ b/linuxthreads_db/td_thr_tls_get_addr.c @@ -40,7 +40,7 @@ td_thr_tls_get_addr (const td_thrhandle_t *th __attribute__ ((unused)), /* Get the DTV pointer from the thread descriptor. */ if (ps_pdread (th->th_ta_p->ph, - &((struct _pthread_descr_struct *) th->th_unique)->dtv, + &((struct _pthread_descr_struct *) th->th_unique)->p_header.data.dtvp, &dtvp, sizeof dtvp) != PS_OK) return TD_ERR; /* XXX Other error value? */ |