kill_tree/
lib.rs

1mod common;
2mod core;
3
4#[cfg(target_os = "linux")]
5mod linux;
6#[cfg(target_os = "macos")]
7mod macos;
8#[cfg(unix)]
9mod unix;
10#[cfg(windows)]
11mod windows;
12
13#[cfg(feature = "blocking")]
14pub mod blocking;
15#[cfg(feature = "tokio")]
16pub mod tokio;
17
18pub use crate::common::get_available_max_process_id;
19pub use crate::core::{Config, Error, Output, Outputs, ParentProcessId, ProcessId, Result};