mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-02-08 04:43:27 +08:00
Merge pull request #118 from Chasing1020/main
fix: make the kernel stack size identical to the config in os3-ref
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
pub const USER_STACK_SIZE: usize = 8192;
|
||||
pub const KERNEL_STACK_SIZE: usize = 8192 * 20;
|
||||
pub const USER_STACK_SIZE: usize = 4096;
|
||||
pub const KERNEL_STACK_SIZE: usize = 4096 * 20;
|
||||
pub const KERNEL_HEAP_SIZE: usize = 0x20000;
|
||||
pub const MAX_APP_NUM: usize = 16;
|
||||
pub const APP_BASE_ADDRESS: usize = 0x80400000;
|
||||
|
||||
Reference in New Issue
Block a user