diff options
author | Roland McGrath <roland@gnu.org> | 2006-07-29 23:12:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-07-29 23:12:43 +0000 |
commit | ab5823b4b6e760345d347b98830ccc75aa81bff6 (patch) | |
tree | f9b25d5f9a16e7ce0318aaf3adcccec0e83fd804 /nptl/pthread_mutex_setprioceiling.c | |
parent | aa583d2ff9fca922771d88f1afa255847f2aa4ed (diff) | |
download | glibc-ab5823b4b6e760345d347b98830ccc75aa81bff6.tar glibc-ab5823b4b6e760345d347b98830ccc75aa81bff6.tar.gz glibc-ab5823b4b6e760345d347b98830ccc75aa81bff6.tar.bz2 glibc-ab5823b4b6e760345d347b98830ccc75aa81bff6.zip |
Updated to fedora-glibc-20060729T2255cvs/fedora-glibc-2_4_90-14
Diffstat (limited to 'nptl/pthread_mutex_setprioceiling.c')
-rw-r--r-- | nptl/pthread_mutex_setprioceiling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_mutex_setprioceiling.c b/nptl/pthread_mutex_setprioceiling.c index 999b635ac1..3271f8833a 100644 --- a/nptl/pthread_mutex_setprioceiling.c +++ b/nptl/pthread_mutex_setprioceiling.c @@ -30,7 +30,7 @@ pthread_mutex_setprioceiling (mutex, prioceiling, old_ceiling) { /* The low bits of __kind aren't ever changed after pthread_mutex_init, so we don't need a lock yet. */ - if ((mutex->__data.__kind & PTHREAD_MUTEX_PRIO_PROTECT_PRIVATE_NP) == 0) + if ((mutex->__data.__kind & PTHREAD_MUTEX_PRIO_PROTECT_NP) == 0) return EINVAL; if (prioceiling < 0 || __builtin_expect (prioceiling > 255, 0)) |