Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockna committed Sep 13, 2024
1 parent 9643cc5 commit c1c06a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xernel/kernel/src/mem/heap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::allocator::align_up;
use super::HEAP_START_ADDR;
use super::{frame::FRAME_ALLOCATOR, paging::KERNEL_PAGE_MAPPER};

// TODO: Replace heap by self written slap allocator
// TODO: Replace heap by self written slab allocator
static HEAP: Spinlock<Heap> = Spinlock::new(Heap::empty());

const HEAP_INITIAL_PAGE_COUNT: u64 = 2; // 4 MiB
Expand Down

0 comments on commit c1c06a8

Please sign in to comment.