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

7 lines
129 B
Rust
Raw Normal View History

#![allow(dead_code)]
2018-04-13 10:22:09 +04:00
2018-11-19 13:21:06 +04:00
pub use crate::arch::consts::*;
2018-07-11 06:57:07 +04:00
pub const MAX_CPU_NUM: usize = 8;
2018-11-02 06:54:08 +04:00
pub const MAX_PROCESS_NUM: usize = 128;