shadow_rs/host/
mod.rs

1//! Process management and emulation of Linux behaviour.
2//!
3//! This module contains the code responsible for starting the managed processes in a way that
4//! allows Shadow to intercept their syscalls. It also contains the emulation of Linux hosts,
5//! threads, processes, syscalls, files, network interfaces, etc.
6
7pub mod context;
8pub mod cpu;
9pub mod descriptor;
10pub mod futex_table;
11#[allow(clippy::module_inception)]
12pub mod host;
13pub mod managed_thread;
14pub mod memory_manager;
15pub mod network;
16pub mod process;
17pub mod status_listener;
18pub mod syscall;
19pub mod thread;
20pub mod timer;