Home
last modified time | relevance | path

Searched refs:nr_futexes (Results 1 – 4 of 4) sorted by relevance

/linux/kernel/futex/
H A Dsyscalls.c222 unsigned int nr_futexes, futex_wake_fn *wake, in futex_parse_waitv() argument
228 for (i = 0; i < nr_futexes; i++) { in futex_parse_waitv()
319 unsigned int, nr_futexes, unsigned int, flags, in SYSCALL_DEFINE5() argument
330 if (!nr_futexes || nr_futexes > FUTEX_WAITV_MAX || !waiters) in SYSCALL_DEFINE5()
336 futexv = kcalloc(nr_futexes, sizeof(*futexv), GFP_KERNEL); in SYSCALL_DEFINE5()
342 ret = futex_parse_waitv(futexv, waiters, nr_futexes, futex_wake_mark, in SYSCALL_DEFINE5()
345 ret = futex_wait_multiple(futexv, nr_futexes, timeout ? &to : NULL); in SYSCALL_DEFINE5()
/linux/Documentation/translations/zh_CN/userspace-api/
H A Dfutex2.rst30 futex_waitv(struct futex_waitv *waiters, unsigned int nr_futexes,
48 ``nr_futexes`` 指定了数组的大小。不在[1,128]区间内的值会使系统调用返回 ``-EINVAL`` 。
/linux/Documentation/userspace-api/
H A Dfutex2.rst25 futex_waitv(struct futex_waitv *waiters, unsigned int nr_futexes,
46 ``nr_futexes`` specifies the size of the array. Numbers out of [1, 128]
/linux/include/linux/
H A Dsyscalls.h583 unsigned int nr_futexes, unsigned int flags,