diff options
Diffstat (limited to 'kernel/src/memory.cpp')
| -rw-r--r-- | kernel/src/memory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/src/memory.cpp b/kernel/src/memory.cpp index 14bedf1..3bc86f3 100644 --- a/kernel/src/memory.cpp +++ b/kernel/src/memory.cpp @@ -3,7 +3,7 @@ #include "kapi/memory.hpp" #include "kapi/system.hpp" -#include "kernel/memory/free_list_allocator.hpp" +#include "kernel/memory/block_list_allocator.hpp" #include "kernel/memory/heap_allocator.hpp" #include <atomic> @@ -31,7 +31,7 @@ namespace kernel::memory constinit null_allocator null_allocator::instance{}; auto constinit active_heap_allocator = std::optional<heap_allocator *>{&null_allocator::instance}; - auto constinit basic_allocator = std::optional<free_list_allocator>{}; + auto constinit basic_allocator = std::optional<block_list_allocator>{}; } // namespace auto get_heap_allocator() -> heap_allocator & |
