fix(heap): increased heap size to 1MiB
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
Julien CLEMENT 2022-04-22 08:55:26 +02:00
parent 9b5004bf81
commit 204b464f59

View File

@ -2,7 +2,7 @@ use super::PAGE_SIZE;
use linked_list_allocator::LockedHeap;
pub const HEAP_START: u64 = 0x4444_4444_0000;
pub const HEAP_SIZE: u64 = PAGE_SIZE as u64 * 25;
pub const HEAP_SIZE: u64 = PAGE_SIZE as u64 * 256;
#[global_allocator]
pub static ALLOCATOR: LockedHeap = LockedHeap::empty();