diff options
author | 2006-03-28 09:36:28 +0000 | |
---|---|---|
committer | 2006-03-28 09:36:28 +0000 | |
commit | 5a6a773f6c388e7740afb495fcd03d3b500f30cb (patch) | |
tree | ad7b4e3dd8bb8a750bf6b3a016c591e5d98026dc /nptl/pthread_mutex_consistent.c | |
parent | Remove prehistoric comment about nscd incompatibility with 2.0 kernels. (diff) | |
download | glibc-cvs/fedora-.tar.xz glibc-cvs/fedora-.zip |
Updated to fedora-glibc-20060328T0900cvs/fedora-
Diffstat (limited to 'nptl/pthread_mutex_consistent.c')
-rw-r--r-- | nptl/pthread_mutex_consistent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_mutex_consistent.c b/nptl/pthread_mutex_consistent.c index 0cfe972da0..d4f287b755 100644 --- a/nptl/pthread_mutex_consistent.c +++ b/nptl/pthread_mutex_consistent.c @@ -26,7 +26,7 @@ pthread_mutex_consistent_np (mutex) pthread_mutex_t *mutex; { /* Test whether this is a robust mutex with a dead owner. */ - if ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_PRIVATE_NP) == 0 + if ((mutex->__data.__kind & PTHREAD_MUTEX_ROBUST_NORMAL_NP) == 0 || mutex->__data.__owner != PTHREAD_MUTEX_INCONSISTENT) return EINVAL; |