pub trait ProcessExt {
    fn create_linux(
        job: &Arc<Job>,
        rootfs: Arc<dyn FileSystem>
    ) -> ZxResult<Arc<Self>>; fn linux(&self) -> &LinuxProcess; fn fork_from(parent: &Arc<Self>, vfork: bool) -> ZxResult<Arc<Self>>; }
Expand description

Process extension for linux

Required Methods

create Linux process

get linux process

fork from current linux process

Implementations on Foreign Types

Fork the process.

Implementors