1 2 3 4 5 6 7 8 9 10 11 12
use yazi_shared::event::CmdCow; use crate::manager::Manager; impl Manager { pub fn suspend(&mut self, _: CmdCow) { #[cfg(unix)] unsafe { libc::raise(libc::SIGTSTP); } } }