io_uring_queue_exit
tear down io_uring submission and completion queues
- Provided by: liburing-dev (Version: 2.1-2build1)
- Source: liburing
- Report a bug
tear down io_uring submission and completion queues
#include <liburing.h>
void io_uring_queue_exit(struct io_uring * ring );
io_uring_queue_exit(3) will release all resources acquired and initialized by io_uring_queue_init(3). It first unmaps the memory shared between the application and the kernel and then closes the io_uring file descriptor.
None