diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-22 23:10:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-22 23:10:17 +0000 |
commit | 0e9d624072fd24ee7d113bcf9325e8fb21d2cf60 (patch) | |
tree | c1185e3d74e8db6363798cf48b9b83bd71ef568d /linuxthreads/descr.h | |
parent | 11bf8ce1d6c28b4758cedeaea9558f6a071fe7d8 (diff) | |
download | glibc-0e9d624072fd24ee7d113bcf9325e8fb21d2cf60.tar.gz |
Update.
2003-07-22 Jakub Jelinek <jakub@redhat.com>
* include/resolv.h (__resp): Declare. Define to __libc_resp
if in libc.so.
(_res): If USE___THREAD, define to (*__resp).
* resolv/res_libc.c (_res): Normal .bss variable with compat_symbol
even if USE___THREAD.
(__resp): New __thread variable.
(__libc_resp): New alias.
* resolv/Versions (libc): Export _res@GLIBC_2.0 even if
USE_TLS && HAVE___THREAD. Export __resp@@GLIBC_PRIVATE.
* sysdeps/generic/res-state.c (__res_state): Return __resp
if USE___THREAD.
Diffstat (limited to 'linuxthreads/descr.h')
-rw-r--r-- | linuxthreads/descr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/descr.h b/linuxthreads/descr.h index a9aaa55122..f00278cb51 100644 --- a/linuxthreads/descr.h +++ b/linuxthreads/descr.h @@ -163,8 +163,8 @@ struct _pthread_descr_struct int * p_h_errnop; /* pointer to used h_errno variable */ int p_h_errno; /* error returned by last netdb function */ struct __res_state *p_resp; /* Pointer to resolver state */ - struct __res_state p_res; /* per-thread resolver state */ #endif + struct __res_state p_res; /* per-thread resolver state */ int p_userstack; /* nonzero if the user provided the stack */ void *p_guardaddr; /* address of guard area or NULL */ size_t p_guardsize; /* size of guard area */ |