Skip to content
Closed
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/Starry-OS/starry-process"

[dependencies]
bitflags = "2.10.0"
kspin = "0.1"
lazyinit = "0.2.1"
weak-map = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ mod session;
/// A process ID, also used as session ID, process group ID, and thread ID.
pub type Pid = u32;

pub use process::{Process, init_proc};
pub use process::{Process, ZombieInfo, init_proc, ProcessState};
pub use process_group::ProcessGroup;
pub use session::Session;
Loading