mirror of git://sourceware.org/git/glibc.git
alpha: Add lll_futex_timed_wait_bitset
This commit is contained in:
parent
0f5477af5d
commit
caed4e98ca
|
@ -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>
|
2013-01-01 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/alpha/bits/termios.h: Reformat copyright
|
* sysdeps/unix/sysv/linux/alpha/bits/termios.h: Reformat copyright
|
||||||
|
|
|
@ -78,6 +78,19 @@
|
||||||
#define lll_futex_wait(futexp, val, private) \
|
#define lll_futex_wait(futexp, val, private) \
|
||||||
lll_futex_timed_wait (futexp, val, NULL, 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) \
|
#define lll_futex_timed_wait(futexp, val, timespec, private) \
|
||||||
({ \
|
({ \
|
||||||
INTERNAL_SYSCALL_DECL (__err); \
|
INTERNAL_SYSCALL_DECL (__err); \
|
||||||
|
|
Loading…
Reference in New Issue