diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-01-12 05:11:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-01-12 05:11:52 +0000 |
commit | a1d87b5dfbdd951808b0a83dfa6d2f1654ccb37f (patch) | |
tree | 040a9748319bcec9ba87603e611ea5455db40414 /nptl/sysdeps | |
parent | 11bf311edc76f5ddc469a8c396e313e82d76be15 (diff) | |
download | glibc-a1d87b5dfbdd951808b0a83dfa6d2f1654ccb37f.tar glibc-a1d87b5dfbdd951808b0a83dfa6d2f1654ccb37f.tar.gz glibc-a1d87b5dfbdd951808b0a83dfa6d2f1654ccb37f.tar.bz2 glibc-a1d87b5dfbdd951808b0a83dfa6d2f1654ccb37f.zip |
* sysdeps/unix/sysv/linux/x86_64/lowlevellock.h
(lll_futex_timed_wait): Undo part of last change, don't negate
return value.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h index 4030bb7fb8..bb988f3b2b 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h @@ -172,7 +172,7 @@ LLL_STUB_UNWIND_INFO_END : "0" (SYS_futex), "D" (futex), "S" (FUTEX_WAIT), \ "d" (_val), "r" (__to) \ : "memory", "cc", "r11", "cx"); \ - -__status; \ + __status; \ }) |