mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-26 18:03:27 +04:00
9 lines
170 B
Rust
9 lines
170 B
Rust
#![allow(dead_code)]
|
|
|
|
pub use crate::arch::consts::*;
|
|
|
|
pub const MAX_CPU_NUM: usize = 8;
|
|
pub const MAX_PROCESS_NUM: usize = 128;
|
|
|
|
pub const USEC_PER_TICK: usize = 10000;
|