1
0
Fork 0
forked from wry/wry

autocommit 2022-03-09 14:01:21 CET

This commit is contained in:
Julian Orth 2022-03-09 14:01:21 +01:00
parent aa0cb94143
commit 4df6b559b7
32 changed files with 1121 additions and 172 deletions

View file

@ -10,11 +10,11 @@ pub enum SighandError {
#[error("The signal fd is in an error state")]
ErrorEvent,
#[error("Could not read from the signal fd")]
ReadFailed(#[source] std::io::Error),
ReadFailed(#[source] crate::utils::oserror::OsError),
#[error("Could not block the signalfd signals")]
BlockFailed(#[source] std::io::Error),
BlockFailed(#[source] crate::utils::oserror::OsError),
#[error("Could not create a signalfd")]
CreateFailed(#[source] std::io::Error),
CreateFailed(#[source] crate::utils::oserror::OsError),
#[error("The event loop caused an error")]
EventLoopError(#[from] EventLoopError),
}