Searched refs:nr_futexes (Results 1 – 4 of 4) sorted by relevance
/linux-6.6.21/kernel/futex/ |
D | syscalls.c | 199 unsigned int nr_futexes) in futex_parse_waitv() argument 204 for (i = 0; i < nr_futexes; i++) { in futex_parse_waitv() 247 unsigned int, nr_futexes, unsigned int, flags, in SYSCALL_DEFINE5() argument 260 if (!nr_futexes || nr_futexes > FUTEX_WAITV_MAX || !waiters) in SYSCALL_DEFINE5() 288 futexv = kcalloc(nr_futexes, sizeof(*futexv), GFP_KERNEL); in SYSCALL_DEFINE5() 294 ret = futex_parse_waitv(futexv, waiters, nr_futexes); in SYSCALL_DEFINE5() 296 ret = futex_wait_multiple(futexv, nr_futexes, timeout ? &to : NULL); in SYSCALL_DEFINE5()
|
/linux-6.6.21/Documentation/translations/zh_CN/userspace-api/ |
D | futex2.rst | 30 futex_waitv(struct futex_waitv *waiters, unsigned int nr_futexes, 48 ``nr_futexes`` 指定了数组的大小。不在[1,128]区间内的值会使系统调用返回 ``-EINVAL`` 。
|
/linux-6.6.21/Documentation/userspace-api/ |
D | futex2.rst | 25 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-6.6.21/include/linux/ |
D | syscalls.h | 551 unsigned int nr_futexes, unsigned int flags,
|