| 132 | } |
| 133 | |
| 134 | static auto __init_params(unsigned __flags) noexcept -> ::io_uring_params |
| 135 | { |
| 136 | ::io_uring_params __params{}; |
| 137 | __params.flags = __flags; |
| 138 | return __params; |
| 139 | } |
| 140 | |
| 141 | // memory mapped regions for submission and completion queue |
| 142 | memory_mapped_region __submission_queue_region_{}; |
nothing calls this directly
no outgoing calls
no test coverage detected