Add support for chmod, fchmod, fchmodat

This commit is contained in:
LI Qing
2023-07-03 16:14:40 +08:00
committed by Tate, Hongliang Tian
parent 743344e3fc
commit 3600a3a439
14 changed files with 160 additions and 26 deletions

View File

@ -4,7 +4,7 @@ use log::Level;
pub const USER_STACK_SIZE: usize = PAGE_SIZE * 4;
pub const KERNEL_STACK_SIZE: usize = PAGE_SIZE * 64;
pub const KERNEL_HEAP_SIZE: usize = 0x4_000_000;
pub const KERNEL_HEAP_SIZE: usize = 0x5_000_000;
pub const KERNEL_OFFSET: usize = 0xffffffff80000000;