aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/futex.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix bugs pointed out by syz-checkDmitry Vyukov2022-01-131-5/+5
| | | | Update #590
* sys/linux: add new futex_waitv syscallMuhammad Usama Anjum2021-11-291-0/+14
| | | | | | Add description of the new syscall futex_waitv. Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
* sys/linux: add new futex/seccomp operationsDmitry Vyukov2021-10-211-1/+1
| | | | | See https://elixir.bootlin.com/linux/v5.15-rc6/source/include/uapi/linux/futex.h#L11 And https://elixir.bootlin.com/linux/v5.15-rc6/source/include/uapi/linux/seccomp.h#L118
* sys/linux: remove FUTEX_WAIT_MULTIPLE operationAndré Almeida2020-12-111-8/+1
| | | | | | | | FUTEX_WAIT_MULTIPLE was added before it was merged, and nowadays we have other plans for futex. Remove all WAIT_MULTIPLE references so futex fuzzing can be re-enabled. Signed-off-by: André Almeida <andrealmeid@collabora.com>
* sys/linux: add new FUTEX_WAIT_MULTIPLE operationAndré Almeida2020-02-171-0/+27
Create individual file for futex syscall and add description for the new operation FUTEX_WAIT_MULTIPLE. Signed-off-by: André Almeida <andrealmeid@collabora.com>