Closed aconz2 closed 2 months ago
There are no futex2 man pages yet it seems, but they should get there at some point... I don't think there are better resources we can point to right now, so probably just leave those as-is? The kernel headers are probably the only reference for them a this point.
The man pages reference
unlinkat2
,mkdirat2
,symlinkat2
, andlinkat2
which I think are typos. This fixes them by removing the2
.Related to https://github.com/tokio-rs/io-uring/pull/304
There are also a few references to
futex2(2)
which I now understand (I think) refers to the groupfutex_{wait,waitv,wake}
, but unfortunately none of those have man pages. Is there a place that documents those that thefutex2(2)
link could reference instead?git request-pull output:
Click to show/hide pull request guidelines
## Pull Request Guidelines 1. To make everyone easily filter pull request from the email notification, use `[GIT PULL]` as a prefix in your PR title. ``` [GIT PULL] Your Pull Request Title ``` 2. Follow the commit message format rules below. 3. Follow the Linux kernel coding style (see: https://github.com/torvalds/linux/blob/master/Documentation/process/coding-style.rst). ### Commit message format rules: 1. The first line is title (don't be more than 72 chars if possible). 2. Then an empty line. 3. Then a description (may be omitted for truly trivial changes). 4. Then an empty line again (if it has a description). 5. Then a `Signed-off-by` tag with your real name and email. For example: ``` Signed-off-by: Foo BarBy submitting this pull request, I acknowledge that: