forked from AbleOS/ableos_userland
add a process library
This commit is contained in:
parent
46a77f5bd4
commit
4ee4681ab7
9
libraries/process/Cargo.toml
Normal file
9
libraries/process/Cargo.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[package]
|
||||
name = "process"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
versioning = { path = "../versioning" }
|
4
libraries/process/src/lib.rs
Normal file
4
libraries/process/src/lib.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
pub type PID = u32;
|
||||
use versioning::Version;
|
||||
|
||||
pub const VERSION: Version = Version::new(0, 1, 0);
|
Loading…
Reference in a new issue