DiskInode sz->128bytes && user heap -> 32KiB

This commit is contained in:
Yifan Wu 2021-02-27 07:43:28 +08:00
parent 34f26c5e8f
commit ff685b86c8
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ use syscall::*;
use buddy_system_allocator::LockedHeap;
use alloc::vec::Vec;
const USER_HEAP_SIZE: usize = 16384;
const USER_HEAP_SIZE: usize = 32768;
static mut HEAP_SPACE: [u8; USER_HEAP_SIZE] = [0; USER_HEAP_SIZE];