diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-06-18 22:22:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-06-18 22:22:57 +0000 |
commit | ae1ad3aebbc397212b4bb2eec92ff19f8c1f913a (patch) | |
tree | b1ec4a328c2f5065d05e19ca024ed9be58dcf28c /nptl/pthreadP.h | |
parent | 3abee0b7f15aadf44f442ccdea30f0bdbe113293 (diff) | |
download | glibc-ae1ad3aebbc397212b4bb2eec92ff19f8c1f913a.tar glibc-ae1ad3aebbc397212b4bb2eec92ff19f8c1f913a.tar.gz glibc-ae1ad3aebbc397212b4bb2eec92ff19f8c1f913a.tar.bz2 glibc-ae1ad3aebbc397212b4bb2eec92ff19f8c1f913a.zip |
[BZ #4647]
Tomas Janousek <tjanouse@redhat.com>
Ulrich Drepper <drepper@redhat.com>
[BZ #4647]
* resolv/res_send.c (send_dg): Remove socket_pf. Use ipv6_unavail
member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
socket.
* resolv/resolv.h (__res_state): Add ipv6_unavail member. Make
unused member a bitmap.
* resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
servers are configured.
2007-06-18 Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 46e24761af..85fb9b8e48 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -97,6 +97,9 @@ enum = PTHREAD_MUTEX_PRIO_PROTECT_NP | PTHREAD_MUTEX_ADAPTIVE_NP }; +#define PTHREAD_MUTEX_TYPE(m) \ + ((m)->__data.__kind) + /* Ceiling in __data.__lock. __data.__lock is signed, so don't use the MSB bit in there, but in the mask also include that bit, so that the compiler can optimize & PTHREAD_MUTEX_PRIO_CEILING_MASK |