pub trait CheckSpawned {
    // Required method
    fn check_spawned(
        &mut self,
        argc: i32,
        argv: &[*mut u8],
        fd: &mut i32
    ) -> bool;
}

Required Methods§

source

fn check_spawned(&mut self, argc: i32, argv: &[*mut u8], fd: &mut i32) -> bool

| Parse command line and determine if | current process is a spawned child | process. If so, return true and a file | descriptor for communicating with the | parent process.

Implementors§