mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Update.
* resolv/res_libc.c [USE___THREAD] (_res): Don't need the initializer anymore now that res_thread_freeres is more careful.
This commit is contained in:
parent
e42e757ef3
commit
e361e438a1
@ -1,5 +1,8 @@
|
|||||||
2003-02-27 Ulrich Drepper <drepper@redhat.com>
|
2003-02-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* resolv/res_libc.c [USE___THREAD] (_res): Don't need the
|
||||||
|
initializer anymore now that res_thread_freeres is more careful.
|
||||||
|
|
||||||
* sunrpc/svc_udp.c (svcudp_recv): Remove all control messages
|
* sunrpc/svc_udp.c (svcudp_recv): Remove all control messages
|
||||||
except the PKTINFO. Reset interface in PKTINFO.
|
except the PKTINFO. Reset interface in PKTINFO.
|
||||||
Patch by Neil Brown <neilb@cse.unsw.edu.au> [PR libc/4973].
|
Patch by Neil Brown <neilb@cse.unsw.edu.au> [PR libc/4973].
|
||||||
|
@ -72,7 +72,7 @@ res_init(void) {
|
|||||||
|
|
||||||
#if USE___THREAD
|
#if USE___THREAD
|
||||||
/* With __thread support, this per-thread variable is used in all cases. */
|
/* With __thread support, this per-thread variable is used in all cases. */
|
||||||
__thread struct __res_state _res = { ._vcsock = -1 };
|
__thread struct __res_state _res;
|
||||||
extern __thread struct __res_state __libc_res __attribute__ ((alias ("_res")))
|
extern __thread struct __res_state __libc_res __attribute__ ((alias ("_res")))
|
||||||
attribute_hidden;
|
attribute_hidden;
|
||||||
# define _res __libc_res
|
# define _res __libc_res
|
||||||
|
Loading…
Reference in New Issue
Block a user