uring-sys icon indicating copy to clipboard operation
uring-sys copied to clipboard

liburing bindings

Results 10 uring-sys issues
Sort by recently updated
recently updated
newest added

So that other crates with C libs that depend on liburing can take advantage of the bundled headers. Rationale for copying headers around is to provide a single include directory.

This is because liburing broke it with their commit https://github.com/axboe/liburing/commit/f0c5c54945ae92a00cdbb43bdf3abaeab6bd3a23 It was fixed (by reverting) by https://github.com/axboe/liburing/commit/1bafb3ce5f5eeb11cd982c7540f6aa74e3f381d4, and then a unit test was added by https://github.com/axboe/liburing/commit/596413404af870f01a03d47f284b328758db1152 Could we update liburing...

This enables building against musl libc, such as used by alpine linux.

Liburing is approaching a new release. I am testing my integration and found two issues when using uring-sys with the new release. See https://twitter.com/glcst/status/1360036763318824963 for details Relevant liburing commits: *...

Adds the future liburing 0.8 sqe_prep functions intended for integration once 0.8 is released and we bump our submodule. The new syscall prep functions are: - `tee` - `shutdown` -...

Hello! :) This PR switches the order of `fd_out` and `off_in` in the `io_uring_prep_splice` call, I think they are incorrect as is. The signature is `off_in`, `fd_out` and I changed...

This is useful to be able to cast this to int without consuming

I would like to version this exactly like liburing - release the first non-prerelease version at `1.0.3` linked to the commit that is liburing's `0.3` release. liburing has a strong...

liburing now supports freeing memory allocated for usage with the feature discovery functionality. I would be happy to provide the uring-sys implementation which I have in a private branch, but...

As iouring evolves, the definition of structs might change. This has already happened, when the offset field of io_uring_sqe became a union of an offset and a second address, to...