6#include "uringpp/detail/debug.h"
12 struct io_uring_sqe *sqe_;
13 std::coroutine_handle<> h_;
18 bool await_ready()
noexcept {
return false; }
19 bool await_suspend(std::coroutine_handle<> h) {
21 ::io_uring_sqe_set_data(sqe_,
this);
24 int await_resume() {
return rc_; }
Definition: event_loop.h:35
Definition: awaitable.h:10