Skip to content

Commit eac11b5

Browse files
committed
fix: correctd HEAP_SIZE comment (8 MiB, not 100 KiB)
1 parent cbf9de4 commit eac11b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/allocator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use x86_64::{
99
};
1010

1111
pub const HEAP_START: usize = 0x_4444_4444_0000;
12-
pub const HEAP_SIZE: usize = 8 * 1024 * 1024; // 100 KiB
12+
pub const HEAP_SIZE: usize = 8 * 1024 * 1024; // 8 MiB
1313

1414
#[global_allocator]
1515
static ALLOCATOR: LockedHeap = LockedHeap::empty();

0 commit comments

Comments
 (0)