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

@ -5,7 +5,7 @@ pub use crate::xcon::{
};
use {
crate::{
async_engine::{AsyncError, Phase, SpawnedFuture},
async_engine::{Phase, SpawnedFuture},
compositor::DISPLAY,
state::State,
utils::{
@ -87,8 +87,6 @@ pub enum XconError {
#[error("Server requires additional authentication: {0}")]
Authenticate(BString),
#[error(transparent)]
AsyncError(#[from] AsyncError),
#[error(transparent)]
BufIoError(#[from] BufIoError),
#[error("The server did not send a reply to a request")]
MissingReply,