1 /* SPDX-License-Identifier: MIT */ 2 #ifndef LIBURING_SETUP_H 3 #define LIBURING_SETUP_H 4 5 int __io_uring_queue_init_params(unsigned entries, struct io_uring *ring, 6 struct io_uring_params *p, void *buf, 7 size_t buf_size); 8 9 #endif 10