-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: upgrade C library to current master
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule liburing
updated
27 files
+0 −3 | Makefile | |
+36 −0 | configure | |
+46 −0 | man/io_uring_buf_ring_available.3 | |
+2 −2 | man/io_uring_enter.2 | |
+6 −6 | man/io_uring_prep_futex_waitv.3 | |
+4 −1 | man/io_uring_prep_read_multishot.3 | |
+1 −1 | man/io_uring_prep_socket.3 | |
+1 −1 | man/io_uring_queue_init.3 | |
+5 −5 | man/io_uring_setup.2 | |
+6 −0 | man/io_uring_submit_and_wait.3 | |
+21 −3 | man/io_uring_submit_and_wait_timeout.3 | |
+6 −0 | man/io_uring_wait_cqe_nr.3 | |
+15 −3 | man/io_uring_wait_cqes.3 | |
+2 −2 | src/Makefile | |
+16 −9 | src/include/liburing.h | |
+10 −0 | src/include/liburing/io_uring.h | |
+1 −0 | src/liburing-ffi.map | |
+5 −0 | src/liburing.map | |
+14 −0 | src/register.c | |
+3 −0 | test/Makefile | |
+168 −0 | test/defer-tw-timeout.c | |
+143 −4 | test/fd-install.c | |
+1 −0 | test/fixed-buf-merge.c | |
+3 −1 | test/no-mmap-inval.c | |
+153 −0 | test/read-mshot-empty.c | |
+18 −10 | test/read-mshot.c | |
+182 −0 | test/ringbuf-status.c |