Trait axtask::VforkCheck

source ·
pub trait VforkCheck {
    // Required method
    fn check_vfork(&self, process_id: u64) -> bool;
}
Expand description

The interface for checking whether the task is blocked by vfork

Required Methods§

source

fn check_vfork(&self, process_id: u64) -> bool

Called to check whether vforked

if this process was blocked by vfork, return true

Implementors§