Skip to content

Commit 14f69b8

Browse files
committed
chore: remove Sync trait bound from Syscalls
1 parent 0067ebd commit 14f69b8

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)