mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 21:21:32 +00:00
chore(xenplatform): elf loader should async load the file (#197)
* fix(build): remove unused environment variables * chore(xenplatform): elf loader should async load the file
This commit is contained in:
@ -38,6 +38,8 @@ pub enum Error {
|
||||
GenericError(String),
|
||||
#[error("failed to parse int: {0}")]
|
||||
ParseIntError(#[from] std::num::ParseIntError),
|
||||
#[error("failed to join async task: {0}")]
|
||||
AsyncJoinError(#[from] tokio::task::JoinError),
|
||||
}
|
||||
|
||||
pub type Result<T> = std::result::Result<T, Error>;
|
||||
|
Reference in New Issue
Block a user