* sysdeps/unix/sysv/linux/x86_64/lowlevellock.h
authorUlrich Drepper <drepper@redhat.com>
Fri, 12 Jan 2007 05:11:52 +0000 (05:11 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 12 Jan 2007 05:11:52 +0000 (05:11 +0000)
(lll_futex_timed_wait): Undo part of last change, don't negate
return value.

nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h

index 0b1d630..83203da 100644 (file)
@@ -1,3 +1,9 @@
+2007-01-11  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h
+       (lll_futex_timed_wait): Undo part of last change, don't negate
+       return value.
+
 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Cleanups.  Define
index 4030bb7..bb988f3 100644 (file)
@@ -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;                                                                \
   })