io-uring

Back

io_uring is an asynchronous system call API

The io_uring interface consists of Submission queue entry(SQE) and Completion queue entry(CQE)

These queues are ring buffers with certain depth/length. The setting up of these buffers are done with io_uring_setup()

Reference