diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-02 22:47:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-02 22:47:23 +0000 |
commit | f76c8499101d2826013989954dcbccf5fb8321be (patch) | |
tree | 594ecc513964a1d071f243ad9f6cc4a9f6fcd2e3 /nptl/sysdeps/pthread | |
parent | 73f7c32c47ab2397935d9fc2aeaa594794b38c7e (diff) | |
download | glibc-f76c8499101d2826013989954dcbccf5fb8321be.tar.gz glibc-f76c8499101d2826013989954dcbccf5fb8321be.tar.xz glibc-f76c8499101d2826013989954dcbccf5fb8321be.zip |
Update.
* sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. * sysdeps/i386/jmpbuf-unwind.h: Likewise * sysdeps/powerpc/jmpbuf-unwind.h: Likewise. * sysdeps/s390/jmpbuf-unwind.h: Likewise. * sysdeps/sh/jmpbuf-unwind.h: Likewise. * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise. * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Likewise. * sysdeps/x86_64/jmpbuf-unwind.h: Likewise. * unwind.c: Use it.
Diffstat (limited to 'nptl/sysdeps/pthread')
-rw-r--r-- | nptl/sysdeps/pthread/pthread_cond_timedwait.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/sysdeps/pthread/pthread_cond_timedwait.c b/nptl/sysdeps/pthread/pthread_cond_timedwait.c index c6606c9bf9..fdbf43eae8 100644 --- a/nptl/sysdeps/pthread/pthread_cond_timedwait.c +++ b/nptl/sysdeps/pthread/pthread_cond_timedwait.c @@ -99,7 +99,8 @@ __pthread_cond_timedwait (cond, mutex, abstime) INTERNAL_SYSCALL_DECL (err); int ret; ret = INTERNAL_SYSCALL (clock_gettime, err, 2, - cond->__data.__nwaiters & COND_CLOCK_BITS, + (cond->__data.__nwaiters + & ((1 << COND_CLOCK_BITS) - 1)), &rt); # ifndef __ASSUME_POSIX_TIMERS if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (ret, err), 0)) |