* sysdeps/unix/sysv/linux/x86_64/lowlevellock.h

(lll_futex_timed_wait): Undo part of last change, don't negate
	return value.
This commit is contained in:
Ulrich Drepper 2007-01-12 05:11:52 +00:00
parent 11bf311edc
commit a1d87b5dfb
2 changed files with 7 additions and 1 deletions

View 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

View 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; \
})