diff --git a/src/syscalls/mod.rs b/src/syscalls/mod.rs index 5098e6d0..61ad2bab 100644 --- a/src/syscalls/mod.rs +++ b/src/syscalls/mod.rs @@ -1,7 +1,7 @@ use super::Error; use crate::machine::SupportMachine; -pub trait Syscalls: Send + Sync { +pub trait Syscalls: Send { fn initialize(&mut self, machine: &mut Mac) -> Result<(), Error>; // Returned bool means if the syscall has been processed, if // a module returns false, Machine would continue to leverage