| 197 | }; |
| 198 | |
| 199 | inline void __stop(__task* __op) noexcept |
| 200 | { |
| 201 | ::io_uring_cqe __cqe{}; |
| 202 | __cqe.res = -ECANCELED; |
| 203 | __cqe.user_data = bit_cast<__u64>(__op); |
| 204 | __op->__vtable_->__complete_(__op, __cqe); |
| 205 | } |
| 206 | |
| 207 | // This class implements the io_uring submission queue. |
| 208 | class __submission_queue |
no test coverage detected