Skip to content

Commit 4d18d4f

Browse files
committed
chore: remove sync requirement from syscall trait
1 parent a19d3b8 commit 4d18d4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/syscalls/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use super::Error;
22
use crate::machine::SupportMachine;
33

4-
pub trait Syscalls<Mac: SupportMachine>: Send + Sync {
4+
pub trait Syscalls<Mac: SupportMachine>: Send {
55
fn initialize(&mut self, machine: &mut Mac) -> Result<(), Error>;
66
// Returned bool means if the syscall has been processed, if
77
// a module returns false, Machine would continue to leverage

0 commit comments

Comments
 (0)