quininer
quininer
@utkarshgupta137 You can use this crate with rustix or any of your own linux api crates. I thought `rustix::io_uring::io_uring_register` could accept an `io_uring::IoUring` fd, couldn't it? ```rust let io_uring: io_uring::IoUring...
I don't really like this macro, is it possible to implement it using generics? like ```rust pub struct RecvMsgOut { // ... } trait MsgBuf { type Pointer: Copy; fn...
Could you please try to reproduce the issue use https://github.com/web-infra-dev/rspack/pull/11927 and check the snapshot output? This would confirm whether the memory leak is cause by rspack's global variables. You can...
> For low-latency operations this unnecessary cloning can be expensive Do you have any benchmarks proving this? we need to copy the entry from application's memory (either stack or heap)...
I'm willing to expose `push_unchecked` if there's a use case for it. I don't see any real benefit in using move instead of reference, and it would break the API,...
If someone contributes a changelog, I will happy accept it.
`sys.rs` has been updated, would you like to rebase it?
Thank you!
You are right, I think compiler can optimize it. https://rust.godbolt.org/z/aP7KG4dr6 I would accept a PR to simplify it. :)
I haven't tracked this, but new kernel add a lot of new features (like futex opcode) and it would be nice to provide wrappers and tests for them.