42 lines
1.1 KiB
Rust
42 lines
1.1 KiB
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
mod clone;
|
|
pub mod credentials;
|
|
mod exit;
|
|
mod kill;
|
|
mod pid_file;
|
|
pub mod posix_thread;
|
|
#[expect(clippy::module_inception)]
|
|
mod process;
|
|
mod process_filter;
|
|
pub mod process_table;
|
|
mod process_vm;
|
|
mod program_loader;
|
|
pub mod rlimit;
|
|
pub mod signal;
|
|
mod status;
|
|
pub mod sync;
|
|
mod task_set;
|
|
mod term_status;
|
|
mod wait;
|
|
|
|
pub use clone::{clone_child, CloneArgs, CloneFlags};
|
|
pub use credentials::{Credentials, Gid, Uid};
|
|
pub use kill::{kill, kill_all, kill_group, tgkill};
|
|
pub use pid_file::PidFile;
|
|
pub use process::{
|
|
broadcast_signal_async, enqueue_signal_async, spawn_init_process, ExitCode, JobControl, Pgid,
|
|
Pid, Process, ProcessGroup, Session, Sid, Terminal,
|
|
};
|
|
pub use process_filter::ProcessFilter;
|
|
pub use process_vm::{renew_vm_and_map, MAX_LEN_STRING_ARG, MAX_NR_STRING_ARGS};
|
|
pub use program_loader::{check_executable_file, ProgramToLoad};
|
|
pub use rlimit::ResourceType;
|
|
pub use term_status::TermStatus;
|
|
pub use wait::{do_wait, WaitOptions, WaitStatus};
|
|
|
|
pub(super) fn init() {
|
|
process::init();
|
|
posix_thread::futex::init();
|
|
}
|