tokio-rs / io-uring

The `io_uring` library for Rust
Apache License 2.0
1.21k stars 134 forks source link

Fix name of some syscalls in docs #304

Closed aconz2 closed 2 months ago

quininer commented 2 months ago

I think you're right, but the docs comes from liburing manpage. https://github.com/axboe/liburing/blob/master/man/io_uring_enter.2#L1155

I would like docs to be simply consistent with manpage, would you like to fix liburing manpage as well?

aconz2 commented 2 months ago

Oh the plot thickens, makes sense, yes I will do that. Already confused about futex2 since that is almost a thing with futex_{wait,wake,waitv but there is no futex2(2) man page (nor for those calls) so I will try to figure that out and get back to you

aconz2 commented 2 months ago

updated to drop the futex2 changes, liburing now reflects the same changes

quininer commented 2 months ago

Thank you!