#process #create #running

zygote

A zygote process is a small process used primarily to create new processes

3 releases

0.1.2 Jan 17, 2025
0.1.1 Dec 18, 2024
0.1.0 Dec 17, 2024

#300 in Operating systems

Download history 58/week @ 2024-12-11 290/week @ 2024-12-18 58/week @ 2024-12-25 305/week @ 2025-01-15 326/week @ 2025-01-22 664/week @ 2025-01-29 467/week @ 2025-02-05 518/week @ 2025-02-12

2,084 downloads per month
Used in containerd-shim-wasm

Apache-2.0

36KB
744 lines

zygote

zygote is a library to create zygote processes on linux. A zygote process is a small process used primarily to create new processes, but can be used for anything that requires running things in a separate process.

To learn more about zygote processes check out these notes on Chromium.

Getting started

use zygote::Zygote;
fn main() {
    Zygote::init();
    let pid = Zygote::global().run(|_| std::process::id(), ());
    assert_ne!(pid, std::process::id());
}

lib.rs:

zygote is a library to create zygote processes on linux. A zygote process is a small process used primarily to create new processes, but can be used for anything that requires running things in a separate process.

To learn more about zygote processes check out these notes on Chromium.

Getting started

fn main() {
    Zygote::init();
    let pid = Zygote::global().run(|_| std::process::id(), ());
    assert_ne!(pid, std::process::id());
}

Dependencies

~2.2–3MB
~64K SLoC