Skip to content

Commit f2f03d0

Browse files
authored
Merge pull request #468 from quake/quake/remove-sync-syscalls-develop
chore: remove Sync trait bound from Syscalls
2 parents 8f0277d + ba13088 commit f2f03d0

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)