├── .clang-format ├── .github ├── actions │ └── codespell │ │ └── stopwords ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── codespell.yml │ └── shellcheck.yml ├── .gitignore ├── CHANGELOG ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── examples ├── Makefile ├── helpers.c ├── helpers.h ├── io_uring-close-test.c ├── io_uring-cp.c ├── io_uring-test.c ├── io_uring-udp.c ├── link-cp.c ├── napi-busy-poll-client.c ├── napi-busy-poll-server.c ├── poll-bench.c ├── proxy.c ├── proxy.h ├── rsrc-update-bench.c ├── send-zerocopy.c └── ucontext-cp.c ├── liburing.spec ├── liburing ├── arch │ ├── aarch64 │ │ ├── lib.h │ │ └── syscall.h │ ├── generic │ │ ├── lib.h │ │ └── syscall.h │ ├── riscv64 │ │ ├── lib.h │ │ └── syscall.h │ ├── syscall-defs.h │ └── x86 │ │ ├── lib.h │ │ └── syscall.h ├── barrier.h ├── compat.h ├── io_uring.h ├── io_uring_version.h ├── lib.h ├── liburing-hdr-only.h └── liburing.h ├── man ├── io_uring_buf_ring_add.3 ├── io_uring_buf_ring_available.3 ├── io_uring_buf_ring_init.3 ├── io_uring_check_version.3 ├── io_uring_cq_has_overflow.3 ├── io_uring_enable_rings.3 ├── io_uring_enter.2 ├── io_uring_free_buf_ring.3 ├── io_uring_prep_bind.3 ├── io_uring_prep_cmd.3 ├── io_uring_prep_fadvise.3 ├── io_uring_prep_fadvise64.3 ├── io_uring_prep_fixed_fd_install.3 ├── io_uring_prep_ftruncate.3 ├── io_uring_prep_futex_wait.3 ├── io_uring_prep_futex_waitv.3 ├── io_uring_prep_futex_wake.3 ├── io_uring_prep_link_timeout.3 ├── io_uring_prep_listen.3 ├── io_uring_prep_madvise.3 ├── io_uring_prep_madvise64.3 ├── io_uring_prep_poll_add.3 ├── io_uring_prep_poll_update.3 ├── io_uring_prep_read_multishot.3 ├── io_uring_prep_recv.3 ├── io_uring_prep_recvmsg.3 ├── io_uring_prep_send.3 ├── io_uring_prep_send_bundle.3 ├── io_uring_prep_sendmsg.3 ├── io_uring_prep_socket.3 ├── io_uring_prep_symlinkat.3 ├── io_uring_prep_timeout.3 ├── io_uring_prep_timeout_update.3 ├── io_uring_prep_waitid.3 ├── io_uring_queue_init.3 ├── io_uring_register.2 ├── io_uring_register_buf_ring.3 ├── io_uring_register_clock.3 ├── io_uring_register_eventfd.3 ├── io_uring_register_files.3 ├── io_uring_register_iowq_aff.3 ├── io_uring_register_napi.3 ├── io_uring_setup.2 ├── io_uring_setup_buf_ring.3 ├── io_uring_submit.3 ├── io_uring_submit_and_wait.3 ├── io_uring_submit_and_wait_min_timeout.3 ├── io_uring_submit_and_wait_timeout.3 ├── io_uring_unregister_napi.3 ├── io_uring_wait_cqe_nr.3 ├── io_uring_wait_cqe_timeout.3 ├── io_uring_wait_cqes.3 └── io_uring_wait_cqes_min_timeout.3 └── test ├── 232c93d07b74.c ├── 35fa71a030ca.c ├── 500f9fbadef8.c ├── 7ad0e4b2f83c.c ├── 8a9973408177.c ├── 917257daa0fe.c ├── Makefile ├── a0908ae19763.c ├── a4c0b3decb33.c ├── accept-link.c ├── accept-non-empty.c ├── accept-reuse.c ├── accept-test.c ├── accept.c ├── across-fork.c ├── b19062a56726.c ├── b5837bd5311d.c ├── bind-listen.c ├── buf-ring-nommap.c ├── buf-ring-put.c ├── buf-ring.c ├── ce593a6c480a.c ├── close-opath.c ├── config ├── connect-rep.c ├── connect.c ├── coredump.c ├── cq-full.c ├── cq-overflow.c ├── cq-peek-batch.c ├── cq-ready.c ├── cq-size.c ├── d4ae271dfaae.c ├── d77a67ed5f27.c ├── defer-taskrun.c ├── defer-tw-timeout.c ├── defer.c ├── double-poll-crash.c ├── drop-submit.c ├── eeed8b54e0df.c ├── empty-eownerdead.c ├── eploop.c ├── eventfd-disable.c ├── eventfd-reg.c ├── eventfd-ring.c ├── eventfd.c ├── evloop.c ├── exec-target.c ├── exit-no-cleanup.c ├── fadvise.c ├── fallocate.c ├── fc2a85cb02ef.c ├── fd-install.c ├── fd-pass.c ├── fdinfo.c ├── file-register.c ├── file-update.c ├── file-verify.c ├── files-exit-hang-poll.c ├── files-exit-hang-timeout.c ├── fixed-buf-iter.c ├── fixed-buf-merge.c ├── fixed-hugepage.c ├── fixed-link.c ├── fixed-reuse.c ├── fpos.c ├── fsnotify.c ├── fsync.c ├── futex.c ├── hardlink.c ├── helpers.c ├── helpers.h ├── ignore-single-mmap.c ├── init-mem.c ├── io-cancel.c ├── io_uring_enter.c ├── io_uring_passthrough.c ├── io_uring_register.c ├── io_uring_setup.c ├── iopoll-leak.c ├── iopoll-overflow.c ├── iopoll.c ├── kallsyms.c ├── lfs-openat-write.c ├── lfs-openat.c ├── link-timeout.c ├── link.c ├── link_drain.c ├── madvise.c ├── min-timeout-wait.c ├── min-timeout.c ├── mkdir.c ├── msg-ring-fd.c ├── msg-ring-flags.c ├── msg-ring-overflow.c ├── msg-ring.c ├── multicqes_drain.c ├── napi-test.c ├── napi-test.sh ├── no-mmap-inval.c ├── nolibc.c ├── nop-all-sizes.c ├── nop.c ├── nvme.h ├── ooo-file-unreg.c ├── open-close.c ├── open-direct-link.c ├── open-direct-pick.c ├── openat2.c ├── personality.c ├── pipe-bug.c ├── pipe-eof.c ├── pipe-reuse.c ├── poll-cancel-all.c ├── poll-cancel-ton.c ├── poll-cancel.c ├── poll-link.c ├── poll-many.c ├── poll-mshot-overflow.c ├── poll-mshot-update.c ├── poll-race-mshot.c ├── poll-race.c ├── poll-ring.c ├── poll-v-poll.c ├── poll.c ├── pollfree.c ├── probe.c ├── read-before-exit.c ├── read-mshot-empty.c ├── read-mshot.c ├── read-write.c ├── recv-msgall-stream.c ├── recv-msgall.c ├── recv-multishot.c ├── recvsend_bundle-inc.c ├── recvsend_bundle.c ├── reg-fd-only.c ├── reg-hint.c ├── reg-reg-ring.c ├── regbuf-merge.c ├── register-restrictions.c ├── rename.c ├── ring-leak.c ├── ring-leak2.c ├── ringbuf-read.c ├── ringbuf-status.c ├── rsrc_tags.c ├── runtests-loop.sh ├── runtests-quiet.sh ├── runtests.sh ├── rw_merge_test.c ├── self.c ├── send-zerocopy.c ├── send_recv.c ├── send_recvmsg.c ├── shared-wq.c ├── short-read.c ├── shutdown.c ├── sigfd-deadlock.c ├── single-issuer.c ├── skip-cqe.c ├── socket-getsetsock-cmd.c ├── socket-io-cmd.c ├── socket-rw-eagain.c ├── socket-rw-offset.c ├── socket-rw.c ├── socket.c ├── splice.c ├── sq-full-cpp.cc ├── sq-full.c ├── sq-poll-dup.c ├── sq-poll-kthread.c ├── sq-poll-share.c ├── sq-space_left.c ├── sqpoll-disable-exit.c ├── sqpoll-exec.c ├── sqpoll-exit-hang.c ├── sqpoll-sleep.c ├── statx.c ├── stdout.c ├── submit-and-wait.c ├── submit-link-fail.c ├── submit-reuse.c ├── symlink.c ├── sync-cancel.c ├── teardowns.c ├── test.h ├── thread-exit.c ├── timeout-new.c ├── timeout.c ├── truncate.c ├── tty-write-dpoll.c ├── unlink.c ├── uring_cmd_ublk.c ├── version.c ├── wait-timeout.c ├── waitid.c ├── wakeup-hang.c ├── wq-aff.c └── xattr.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/actions/codespell/stopwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.github/actions/codespell/stopwords -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/README.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/helpers.c -------------------------------------------------------------------------------- /examples/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/helpers.h -------------------------------------------------------------------------------- /examples/io_uring-close-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/io_uring-close-test.c -------------------------------------------------------------------------------- /examples/io_uring-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/io_uring-cp.c -------------------------------------------------------------------------------- /examples/io_uring-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/io_uring-test.c -------------------------------------------------------------------------------- /examples/io_uring-udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/io_uring-udp.c -------------------------------------------------------------------------------- /examples/link-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/link-cp.c -------------------------------------------------------------------------------- /examples/napi-busy-poll-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/napi-busy-poll-client.c -------------------------------------------------------------------------------- /examples/napi-busy-poll-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/napi-busy-poll-server.c -------------------------------------------------------------------------------- /examples/poll-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/poll-bench.c -------------------------------------------------------------------------------- /examples/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/proxy.c -------------------------------------------------------------------------------- /examples/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/proxy.h -------------------------------------------------------------------------------- /examples/rsrc-update-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/rsrc-update-bench.c -------------------------------------------------------------------------------- /examples/send-zerocopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/send-zerocopy.c -------------------------------------------------------------------------------- /examples/ucontext-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/examples/ucontext-cp.c -------------------------------------------------------------------------------- /liburing.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing.spec -------------------------------------------------------------------------------- /liburing/arch/aarch64/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/aarch64/lib.h -------------------------------------------------------------------------------- /liburing/arch/aarch64/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/aarch64/syscall.h -------------------------------------------------------------------------------- /liburing/arch/generic/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/generic/lib.h -------------------------------------------------------------------------------- /liburing/arch/generic/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/generic/syscall.h -------------------------------------------------------------------------------- /liburing/arch/riscv64/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/riscv64/lib.h -------------------------------------------------------------------------------- /liburing/arch/riscv64/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/riscv64/syscall.h -------------------------------------------------------------------------------- /liburing/arch/syscall-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/syscall-defs.h -------------------------------------------------------------------------------- /liburing/arch/x86/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/x86/lib.h -------------------------------------------------------------------------------- /liburing/arch/x86/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/arch/x86/syscall.h -------------------------------------------------------------------------------- /liburing/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/barrier.h -------------------------------------------------------------------------------- /liburing/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/compat.h -------------------------------------------------------------------------------- /liburing/io_uring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/io_uring.h -------------------------------------------------------------------------------- /liburing/io_uring_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/io_uring_version.h -------------------------------------------------------------------------------- /liburing/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/lib.h -------------------------------------------------------------------------------- /liburing/liburing-hdr-only.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/liburing-hdr-only.h -------------------------------------------------------------------------------- /liburing/liburing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/liburing/liburing.h -------------------------------------------------------------------------------- /man/io_uring_buf_ring_add.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_buf_ring_add.3 -------------------------------------------------------------------------------- /man/io_uring_buf_ring_available.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_buf_ring_available.3 -------------------------------------------------------------------------------- /man/io_uring_buf_ring_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_buf_ring_init.3 -------------------------------------------------------------------------------- /man/io_uring_check_version.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_check_version.3 -------------------------------------------------------------------------------- /man/io_uring_cq_has_overflow.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_cq_has_overflow.3 -------------------------------------------------------------------------------- /man/io_uring_enable_rings.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_enable_rings.3 -------------------------------------------------------------------------------- /man/io_uring_enter.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_enter.2 -------------------------------------------------------------------------------- /man/io_uring_free_buf_ring.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_free_buf_ring.3 -------------------------------------------------------------------------------- /man/io_uring_prep_bind.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_bind.3 -------------------------------------------------------------------------------- /man/io_uring_prep_cmd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_cmd.3 -------------------------------------------------------------------------------- /man/io_uring_prep_fadvise.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_fadvise.3 -------------------------------------------------------------------------------- /man/io_uring_prep_fadvise64.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_fadvise.3 -------------------------------------------------------------------------------- /man/io_uring_prep_fixed_fd_install.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_fixed_fd_install.3 -------------------------------------------------------------------------------- /man/io_uring_prep_ftruncate.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_ftruncate.3 -------------------------------------------------------------------------------- /man/io_uring_prep_futex_wait.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_futex_wait.3 -------------------------------------------------------------------------------- /man/io_uring_prep_futex_waitv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_futex_waitv.3 -------------------------------------------------------------------------------- /man/io_uring_prep_futex_wake.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_futex_wake.3 -------------------------------------------------------------------------------- /man/io_uring_prep_link_timeout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_link_timeout.3 -------------------------------------------------------------------------------- /man/io_uring_prep_listen.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_listen.3 -------------------------------------------------------------------------------- /man/io_uring_prep_madvise.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_madvise.3 -------------------------------------------------------------------------------- /man/io_uring_prep_madvise64.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_madvise.3 -------------------------------------------------------------------------------- /man/io_uring_prep_poll_add.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_poll_add.3 -------------------------------------------------------------------------------- /man/io_uring_prep_poll_update.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_poll_update.3 -------------------------------------------------------------------------------- /man/io_uring_prep_read_multishot.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_read_multishot.3 -------------------------------------------------------------------------------- /man/io_uring_prep_recv.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_recv.3 -------------------------------------------------------------------------------- /man/io_uring_prep_recvmsg.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_recvmsg.3 -------------------------------------------------------------------------------- /man/io_uring_prep_send.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_send.3 -------------------------------------------------------------------------------- /man/io_uring_prep_send_bundle.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_send.3 -------------------------------------------------------------------------------- /man/io_uring_prep_sendmsg.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_sendmsg.3 -------------------------------------------------------------------------------- /man/io_uring_prep_socket.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_socket.3 -------------------------------------------------------------------------------- /man/io_uring_prep_symlinkat.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_symlinkat.3 -------------------------------------------------------------------------------- /man/io_uring_prep_timeout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_timeout.3 -------------------------------------------------------------------------------- /man/io_uring_prep_timeout_update.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_timeout_update.3 -------------------------------------------------------------------------------- /man/io_uring_prep_waitid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_prep_waitid.3 -------------------------------------------------------------------------------- /man/io_uring_queue_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_queue_init.3 -------------------------------------------------------------------------------- /man/io_uring_register.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register.2 -------------------------------------------------------------------------------- /man/io_uring_register_buf_ring.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register_buf_ring.3 -------------------------------------------------------------------------------- /man/io_uring_register_clock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register_clock.3 -------------------------------------------------------------------------------- /man/io_uring_register_eventfd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register_eventfd.3 -------------------------------------------------------------------------------- /man/io_uring_register_files.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register_files.3 -------------------------------------------------------------------------------- /man/io_uring_register_iowq_aff.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register_iowq_aff.3 -------------------------------------------------------------------------------- /man/io_uring_register_napi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_register_napi.3 -------------------------------------------------------------------------------- /man/io_uring_setup.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_setup.2 -------------------------------------------------------------------------------- /man/io_uring_setup_buf_ring.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_setup_buf_ring.3 -------------------------------------------------------------------------------- /man/io_uring_submit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_submit.3 -------------------------------------------------------------------------------- /man/io_uring_submit_and_wait.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_submit_and_wait.3 -------------------------------------------------------------------------------- /man/io_uring_submit_and_wait_min_timeout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_submit_and_wait_min_timeout.3 -------------------------------------------------------------------------------- /man/io_uring_submit_and_wait_timeout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_submit_and_wait_timeout.3 -------------------------------------------------------------------------------- /man/io_uring_unregister_napi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_unregister_napi.3 -------------------------------------------------------------------------------- /man/io_uring_wait_cqe_nr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_wait_cqe_nr.3 -------------------------------------------------------------------------------- /man/io_uring_wait_cqe_timeout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_wait_cqe_timeout.3 -------------------------------------------------------------------------------- /man/io_uring_wait_cqes.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_wait_cqes.3 -------------------------------------------------------------------------------- /man/io_uring_wait_cqes_min_timeout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/man/io_uring_wait_cqes_min_timeout.3 -------------------------------------------------------------------------------- /test/232c93d07b74.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/232c93d07b74.c -------------------------------------------------------------------------------- /test/35fa71a030ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/35fa71a030ca.c -------------------------------------------------------------------------------- /test/500f9fbadef8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/500f9fbadef8.c -------------------------------------------------------------------------------- /test/7ad0e4b2f83c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/7ad0e4b2f83c.c -------------------------------------------------------------------------------- /test/8a9973408177.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/8a9973408177.c -------------------------------------------------------------------------------- /test/917257daa0fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/917257daa0fe.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/a0908ae19763.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/a0908ae19763.c -------------------------------------------------------------------------------- /test/a4c0b3decb33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/a4c0b3decb33.c -------------------------------------------------------------------------------- /test/accept-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/accept-link.c -------------------------------------------------------------------------------- /test/accept-non-empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/accept-non-empty.c -------------------------------------------------------------------------------- /test/accept-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/accept-reuse.c -------------------------------------------------------------------------------- /test/accept-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/accept-test.c -------------------------------------------------------------------------------- /test/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/accept.c -------------------------------------------------------------------------------- /test/across-fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/across-fork.c -------------------------------------------------------------------------------- /test/b19062a56726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/b19062a56726.c -------------------------------------------------------------------------------- /test/b5837bd5311d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/b5837bd5311d.c -------------------------------------------------------------------------------- /test/bind-listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/bind-listen.c -------------------------------------------------------------------------------- /test/buf-ring-nommap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/buf-ring-nommap.c -------------------------------------------------------------------------------- /test/buf-ring-put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/buf-ring-put.c -------------------------------------------------------------------------------- /test/buf-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/buf-ring.c -------------------------------------------------------------------------------- /test/ce593a6c480a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ce593a6c480a.c -------------------------------------------------------------------------------- /test/close-opath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/close-opath.c -------------------------------------------------------------------------------- /test/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/config -------------------------------------------------------------------------------- /test/connect-rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/connect-rep.c -------------------------------------------------------------------------------- /test/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/connect.c -------------------------------------------------------------------------------- /test/coredump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/coredump.c -------------------------------------------------------------------------------- /test/cq-full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/cq-full.c -------------------------------------------------------------------------------- /test/cq-overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/cq-overflow.c -------------------------------------------------------------------------------- /test/cq-peek-batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/cq-peek-batch.c -------------------------------------------------------------------------------- /test/cq-ready.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/cq-ready.c -------------------------------------------------------------------------------- /test/cq-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/cq-size.c -------------------------------------------------------------------------------- /test/d4ae271dfaae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/d4ae271dfaae.c -------------------------------------------------------------------------------- /test/d77a67ed5f27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/d77a67ed5f27.c -------------------------------------------------------------------------------- /test/defer-taskrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/defer-taskrun.c -------------------------------------------------------------------------------- /test/defer-tw-timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/defer-tw-timeout.c -------------------------------------------------------------------------------- /test/defer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/defer.c -------------------------------------------------------------------------------- /test/double-poll-crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/double-poll-crash.c -------------------------------------------------------------------------------- /test/drop-submit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/drop-submit.c -------------------------------------------------------------------------------- /test/eeed8b54e0df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/eeed8b54e0df.c -------------------------------------------------------------------------------- /test/empty-eownerdead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/empty-eownerdead.c -------------------------------------------------------------------------------- /test/eploop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/eploop.c -------------------------------------------------------------------------------- /test/eventfd-disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/eventfd-disable.c -------------------------------------------------------------------------------- /test/eventfd-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/eventfd-reg.c -------------------------------------------------------------------------------- /test/eventfd-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/eventfd-ring.c -------------------------------------------------------------------------------- /test/eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/eventfd.c -------------------------------------------------------------------------------- /test/evloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/evloop.c -------------------------------------------------------------------------------- /test/exec-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/exec-target.c -------------------------------------------------------------------------------- /test/exit-no-cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/exit-no-cleanup.c -------------------------------------------------------------------------------- /test/fadvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fadvise.c -------------------------------------------------------------------------------- /test/fallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fallocate.c -------------------------------------------------------------------------------- /test/fc2a85cb02ef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fc2a85cb02ef.c -------------------------------------------------------------------------------- /test/fd-install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fd-install.c -------------------------------------------------------------------------------- /test/fd-pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fd-pass.c -------------------------------------------------------------------------------- /test/fdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fdinfo.c -------------------------------------------------------------------------------- /test/file-register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/file-register.c -------------------------------------------------------------------------------- /test/file-update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/file-update.c -------------------------------------------------------------------------------- /test/file-verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/file-verify.c -------------------------------------------------------------------------------- /test/files-exit-hang-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/files-exit-hang-poll.c -------------------------------------------------------------------------------- /test/files-exit-hang-timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/files-exit-hang-timeout.c -------------------------------------------------------------------------------- /test/fixed-buf-iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fixed-buf-iter.c -------------------------------------------------------------------------------- /test/fixed-buf-merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fixed-buf-merge.c -------------------------------------------------------------------------------- /test/fixed-hugepage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fixed-hugepage.c -------------------------------------------------------------------------------- /test/fixed-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fixed-link.c -------------------------------------------------------------------------------- /test/fixed-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fixed-reuse.c -------------------------------------------------------------------------------- /test/fpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fpos.c -------------------------------------------------------------------------------- /test/fsnotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fsnotify.c -------------------------------------------------------------------------------- /test/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/fsync.c -------------------------------------------------------------------------------- /test/futex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/futex.c -------------------------------------------------------------------------------- /test/hardlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/hardlink.c -------------------------------------------------------------------------------- /test/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/helpers.c -------------------------------------------------------------------------------- /test/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/helpers.h -------------------------------------------------------------------------------- /test/ignore-single-mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ignore-single-mmap.c -------------------------------------------------------------------------------- /test/init-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/init-mem.c -------------------------------------------------------------------------------- /test/io-cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/io-cancel.c -------------------------------------------------------------------------------- /test/io_uring_enter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/io_uring_enter.c -------------------------------------------------------------------------------- /test/io_uring_passthrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/io_uring_passthrough.c -------------------------------------------------------------------------------- /test/io_uring_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/io_uring_register.c -------------------------------------------------------------------------------- /test/io_uring_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/io_uring_setup.c -------------------------------------------------------------------------------- /test/iopoll-leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/iopoll-leak.c -------------------------------------------------------------------------------- /test/iopoll-overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/iopoll-overflow.c -------------------------------------------------------------------------------- /test/iopoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/iopoll.c -------------------------------------------------------------------------------- /test/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/kallsyms.c -------------------------------------------------------------------------------- /test/lfs-openat-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/lfs-openat-write.c -------------------------------------------------------------------------------- /test/lfs-openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/lfs-openat.c -------------------------------------------------------------------------------- /test/link-timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/link-timeout.c -------------------------------------------------------------------------------- /test/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/link.c -------------------------------------------------------------------------------- /test/link_drain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/link_drain.c -------------------------------------------------------------------------------- /test/madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/madvise.c -------------------------------------------------------------------------------- /test/min-timeout-wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/min-timeout-wait.c -------------------------------------------------------------------------------- /test/min-timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/min-timeout.c -------------------------------------------------------------------------------- /test/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/mkdir.c -------------------------------------------------------------------------------- /test/msg-ring-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/msg-ring-fd.c -------------------------------------------------------------------------------- /test/msg-ring-flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/msg-ring-flags.c -------------------------------------------------------------------------------- /test/msg-ring-overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/msg-ring-overflow.c -------------------------------------------------------------------------------- /test/msg-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/msg-ring.c -------------------------------------------------------------------------------- /test/multicqes_drain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/multicqes_drain.c -------------------------------------------------------------------------------- /test/napi-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/napi-test.c -------------------------------------------------------------------------------- /test/napi-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/napi-test.sh -------------------------------------------------------------------------------- /test/no-mmap-inval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/no-mmap-inval.c -------------------------------------------------------------------------------- /test/nolibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/nolibc.c -------------------------------------------------------------------------------- /test/nop-all-sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/nop-all-sizes.c -------------------------------------------------------------------------------- /test/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/nop.c -------------------------------------------------------------------------------- /test/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/nvme.h -------------------------------------------------------------------------------- /test/ooo-file-unreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ooo-file-unreg.c -------------------------------------------------------------------------------- /test/open-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/open-close.c -------------------------------------------------------------------------------- /test/open-direct-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/open-direct-link.c -------------------------------------------------------------------------------- /test/open-direct-pick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/open-direct-pick.c -------------------------------------------------------------------------------- /test/openat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/openat2.c -------------------------------------------------------------------------------- /test/personality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/personality.c -------------------------------------------------------------------------------- /test/pipe-bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/pipe-bug.c -------------------------------------------------------------------------------- /test/pipe-eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/pipe-eof.c -------------------------------------------------------------------------------- /test/pipe-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/pipe-reuse.c -------------------------------------------------------------------------------- /test/poll-cancel-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-cancel-all.c -------------------------------------------------------------------------------- /test/poll-cancel-ton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-cancel-ton.c -------------------------------------------------------------------------------- /test/poll-cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-cancel.c -------------------------------------------------------------------------------- /test/poll-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-link.c -------------------------------------------------------------------------------- /test/poll-many.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-many.c -------------------------------------------------------------------------------- /test/poll-mshot-overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-mshot-overflow.c -------------------------------------------------------------------------------- /test/poll-mshot-update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-mshot-update.c -------------------------------------------------------------------------------- /test/poll-race-mshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-race-mshot.c -------------------------------------------------------------------------------- /test/poll-race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-race.c -------------------------------------------------------------------------------- /test/poll-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-ring.c -------------------------------------------------------------------------------- /test/poll-v-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll-v-poll.c -------------------------------------------------------------------------------- /test/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/poll.c -------------------------------------------------------------------------------- /test/pollfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/pollfree.c -------------------------------------------------------------------------------- /test/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/probe.c -------------------------------------------------------------------------------- /test/read-before-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/read-before-exit.c -------------------------------------------------------------------------------- /test/read-mshot-empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/read-mshot-empty.c -------------------------------------------------------------------------------- /test/read-mshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/read-mshot.c -------------------------------------------------------------------------------- /test/read-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/read-write.c -------------------------------------------------------------------------------- /test/recv-msgall-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/recv-msgall-stream.c -------------------------------------------------------------------------------- /test/recv-msgall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/recv-msgall.c -------------------------------------------------------------------------------- /test/recv-multishot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/recv-multishot.c -------------------------------------------------------------------------------- /test/recvsend_bundle-inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/recvsend_bundle-inc.c -------------------------------------------------------------------------------- /test/recvsend_bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/recvsend_bundle.c -------------------------------------------------------------------------------- /test/reg-fd-only.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/reg-fd-only.c -------------------------------------------------------------------------------- /test/reg-hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/reg-hint.c -------------------------------------------------------------------------------- /test/reg-reg-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/reg-reg-ring.c -------------------------------------------------------------------------------- /test/regbuf-merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/regbuf-merge.c -------------------------------------------------------------------------------- /test/register-restrictions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/register-restrictions.c -------------------------------------------------------------------------------- /test/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/rename.c -------------------------------------------------------------------------------- /test/ring-leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ring-leak.c -------------------------------------------------------------------------------- /test/ring-leak2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ring-leak2.c -------------------------------------------------------------------------------- /test/ringbuf-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ringbuf-read.c -------------------------------------------------------------------------------- /test/ringbuf-status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/ringbuf-status.c -------------------------------------------------------------------------------- /test/rsrc_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/rsrc_tags.c -------------------------------------------------------------------------------- /test/runtests-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/runtests-loop.sh -------------------------------------------------------------------------------- /test/runtests-quiet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/runtests-quiet.sh -------------------------------------------------------------------------------- /test/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/runtests.sh -------------------------------------------------------------------------------- /test/rw_merge_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/rw_merge_test.c -------------------------------------------------------------------------------- /test/self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/self.c -------------------------------------------------------------------------------- /test/send-zerocopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/send-zerocopy.c -------------------------------------------------------------------------------- /test/send_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/send_recv.c -------------------------------------------------------------------------------- /test/send_recvmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/send_recvmsg.c -------------------------------------------------------------------------------- /test/shared-wq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/shared-wq.c -------------------------------------------------------------------------------- /test/short-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/short-read.c -------------------------------------------------------------------------------- /test/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/shutdown.c -------------------------------------------------------------------------------- /test/sigfd-deadlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sigfd-deadlock.c -------------------------------------------------------------------------------- /test/single-issuer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/single-issuer.c -------------------------------------------------------------------------------- /test/skip-cqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/skip-cqe.c -------------------------------------------------------------------------------- /test/socket-getsetsock-cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/socket-getsetsock-cmd.c -------------------------------------------------------------------------------- /test/socket-io-cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/socket-io-cmd.c -------------------------------------------------------------------------------- /test/socket-rw-eagain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/socket-rw-eagain.c -------------------------------------------------------------------------------- /test/socket-rw-offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/socket-rw-offset.c -------------------------------------------------------------------------------- /test/socket-rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/socket-rw.c -------------------------------------------------------------------------------- /test/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/socket.c -------------------------------------------------------------------------------- /test/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/splice.c -------------------------------------------------------------------------------- /test/sq-full-cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sq-full-cpp.cc -------------------------------------------------------------------------------- /test/sq-full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sq-full.c -------------------------------------------------------------------------------- /test/sq-poll-dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sq-poll-dup.c -------------------------------------------------------------------------------- /test/sq-poll-kthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sq-poll-kthread.c -------------------------------------------------------------------------------- /test/sq-poll-share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sq-poll-share.c -------------------------------------------------------------------------------- /test/sq-space_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sq-space_left.c -------------------------------------------------------------------------------- /test/sqpoll-disable-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sqpoll-disable-exit.c -------------------------------------------------------------------------------- /test/sqpoll-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sqpoll-exec.c -------------------------------------------------------------------------------- /test/sqpoll-exit-hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sqpoll-exit-hang.c -------------------------------------------------------------------------------- /test/sqpoll-sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sqpoll-sleep.c -------------------------------------------------------------------------------- /test/statx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/statx.c -------------------------------------------------------------------------------- /test/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/stdout.c -------------------------------------------------------------------------------- /test/submit-and-wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/submit-and-wait.c -------------------------------------------------------------------------------- /test/submit-link-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/submit-link-fail.c -------------------------------------------------------------------------------- /test/submit-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/submit-reuse.c -------------------------------------------------------------------------------- /test/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/symlink.c -------------------------------------------------------------------------------- /test/sync-cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/sync-cancel.c -------------------------------------------------------------------------------- /test/teardowns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/teardowns.c -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/test.h -------------------------------------------------------------------------------- /test/thread-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/thread-exit.c -------------------------------------------------------------------------------- /test/timeout-new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/timeout-new.c -------------------------------------------------------------------------------- /test/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/timeout.c -------------------------------------------------------------------------------- /test/truncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/truncate.c -------------------------------------------------------------------------------- /test/tty-write-dpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/tty-write-dpoll.c -------------------------------------------------------------------------------- /test/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/unlink.c -------------------------------------------------------------------------------- /test/uring_cmd_ublk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/uring_cmd_ublk.c -------------------------------------------------------------------------------- /test/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/version.c -------------------------------------------------------------------------------- /test/wait-timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/wait-timeout.c -------------------------------------------------------------------------------- /test/waitid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/waitid.c -------------------------------------------------------------------------------- /test/wakeup-hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/wakeup-hang.c -------------------------------------------------------------------------------- /test/wq-aff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/wq-aff.c -------------------------------------------------------------------------------- /test/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moisrex/liburing-hdr-only/HEAD/test/xattr.c --------------------------------------------------------------------------------