Linux futex (v1 and v2) API fixes, tests and Ziggification #23464
+402
−99
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
linux: futex v1 API cleanup
Use Ziggish
packed struct
for flags arguments. Old:linux.FUTEX.WAIT
vs new:.{ .cmd = .WAIT, .private = false }
.rename
futex_wait
andfutex_wake
which didn't actually specify wait/wake, asfutex_3arg
andfutex_4arg
(as its the number of parameters that is different, the actualop
is the second parameter).provide the full six-arg flavor of the syscall (for some of the advanced ops), and add packed structs for the flag-ish parameters.
Use a
packed union
to support the 4th parameter which is sometimes atimespec
pointer, and sometimes a 32-bit value.Add tests that make sure the structure layout is correct and that the basic argument passing is working (no actual futexes are contended).
linux: futex v2 API cleanup
futex2_waitv
always takes a 64-bit timespec. Perhaps thekernel_timespec
should be renamedtimespec64
now? Its used in iouring, too.Add Ziggish
packed struct
encoding for futex v2 flag parameters.Add very basic "tests" for the futex v2 syscalls (these found the 64-bit timespec bug).
Update the stale or broken comments. (I could also just delete these they're not really documenting Zig-specific behavior.)
Given that the futex2 APIs are not used by Zig's library (they're a bit too new), and the fact that these are very specialized syscalls, and they currently provide no strong benefits over the existing v1 API, it might be prudent to just delete them entirely. If you're fancy enough to build stuff on the futex API, you're more than capable of writing your own syscall wrappers ...