Skip to content

Commit a605c44

Browse files
committed
feat: increase kernel heap size
1 parent a944a74 commit a605c44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

os/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub const USER_STACK_SIZE: usize = 4096 * 2;
77
/// kernel stack size
88
pub const KERNEL_STACK_SIZE: usize = 4096 * 2;
99
/// kernel heap size
10-
pub const KERNEL_HEAP_SIZE: usize = 0x200_0000;
10+
pub const KERNEL_HEAP_SIZE: usize = 0x400_0000; // 64MB
1111

1212
/// page size : 4KB
1313
pub const PAGE_SIZE: usize = 0x1000;

0 commit comments

Comments
 (0)