alpha: Add lll_futex_timed_wait_bitset

This commit is contained in:
Richard Henderson 2013-01-02 09:00:46 -08:00
parent 0f5477af5d
commit caed4e98ca
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2013-01-02 Richard Henderson <rth@redhat.com>
* sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
(lll_futex_timed_wait_bitset): New.
2013-01-01 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/alpha/bits/termios.h: Reformat copyright

View File

@ -78,6 +78,19 @@
#define lll_futex_wait(futexp, val, private) \
lll_futex_timed_wait (futexp, val, NULL, private)
#define lll_futex_timed_wait_bitset(futexp, val, timespec, clockbit, private) \
({ \
INTERNAL_SYSCALL_DECL (__err); \
long int __ret; \
int __op = FUTEX_WAIT_BITSET | clockbit; \
\
__ret = INTERNAL_SYSCALL (futex, __err, 6, (futexp), \
__lll_private_flag (__op, private), \
(val), (timespec), NULL /* Unused. */, \
FUTEX_BITSET_MATCH_ANY); \
__ret; \
})
#define lll_futex_timed_wait(futexp, val, timespec, private) \
({ \
INTERNAL_SYSCALL_DECL (__err); \