diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-07-23 16:39:06 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-07-23 16:39:06 -0700 |
commit | f1adf1f490b33a61eccad1682fbd9b1b66d404bd (patch) | |
tree | e5fedd61b87e8e811690b57b51577b305c9339b2 /nptl/sysdeps/unix | |
parent | b2509a1e380bc92ee6ae6437103d349e1f517773 (diff) | |
download | glibc-f1adf1f490b33a61eccad1682fbd9b1b66d404bd.tar glibc-f1adf1f490b33a61eccad1682fbd9b1b66d404bd.tar.gz glibc-f1adf1f490b33a61eccad1682fbd9b1b66d404bd.tar.bz2 glibc-f1adf1f490b33a61eccad1682fbd9b1b66d404bd.zip |
Fix pthread_cond_timedwait error handling on old kernels.
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S index e12790cb96..7486825d5f 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S @@ -551,12 +551,12 @@ __pthread_cond_timedwait: jne 53b cmpq 24(%rsp), %r9 - jbe 45b + jbe 15f cmpq %rax, %r9 ja 39b - cmpq $-ETIMEDOUT, %r14 +15: cmpq $-ETIMEDOUT, %r14 jne 8b jmp 99b |