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

Required Methods§

source

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

| If this is a spawned process, block and | handle requests from the parent process by | forwarding them to this process’s Init | interface, then return true. If this is | not a spawned child process, return false.

Implementors§