1
0
Fork 0
forked from wry/wry

runtime: replace epoll by io-uring

This commit is contained in:
Julian Orth 2022-05-12 22:50:33 +02:00
parent 98cc85e2d3
commit 9416efeabe
21 changed files with 173 additions and 742 deletions

View file

@ -1,5 +1,5 @@
use {
crate::async_engine::ae_queue::DispatchQueue,
crate::async_engine::AsyncEngine,
std::{
future::Future,
pin::Pin,
@ -10,7 +10,7 @@ use {
pub struct Yield {
pub(super) iteration: u64,
pub(super) queue: Rc<DispatchQueue>,
pub(super) queue: Rc<AsyncEngine>,
}
impl Future for Yield {