1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-26 18:03:27 +04:00
rCore/kernel/src/consts.rs
2019-03-12 11:49:17 +08:00

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;