diff --git a/src/syscall/mod.rs b/src/syscall/mod.rs index 9cd4505e76..e0cbf4c81a 100644 --- a/src/syscall/mod.rs +++ b/src/syscall/mod.rs @@ -293,10 +293,6 @@ pub fn syscall( } } - if result == Err(Error::new(EINTR)) { - crate::context::signal::signal_handler(); - } - if debug { let debug_duration = crate::time::monotonic() - debug_start;