Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
aarch64: Fix lll_futex_timed_wait_bitset return value sign.
The implementation of lll_futex_timed_wait_bitset should not be negating
the futex syscall return value on error.
  • Loading branch information
Marcus Shawcroft committed Nov 21, 2012
1 parent 3bae7c5 commit 86fe56b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ports/ChangeLog.aarch64
@@ -1,3 +1,8 @@
2012-11-21 Marcus Shawcroft <marcus.shawcroft@linaro.org>

* sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h
(lll_futex_timed_wait_bitset): Remove INTERNAL_SYSCALL_ERROR_P.

2012-11-20 Marcus Shawcroft <marcus.shawcroft@linaro.org>

* sysdeps/aarch64/fpu/s_fma.c (weak_alias_x):
Expand Down
2 changes: 1 addition & 1 deletion ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h
Expand Up @@ -96,7 +96,7 @@
__lll_private_flag (__op, private), \
(val), (timespec), NULL /* Unused. */, \
FUTEX_BITSET_MATCH_ANY); \
INTERNAL_SYSCALL_ERROR_P (__ret, __err) ? -__ret : __ret; \
__ret; \
})

#define lll_futex_wake(futexp, nr, private) \
Expand Down

0 comments on commit 86fe56b

Please sign in to comment.