aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2025-02-21 15:23:51 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2025-02-21 15:23:51 +0000
commit93cc8aa1c0e4ba991f0503c609702e1c63a240c7 (patch)
tree32d34118c7f93b4771c11f75974e682c5ace45f5 /arch/x86_64/src
parent405b5b1018397bff48e32c75e10a6b3b58bb6a20 (diff)
downloadteachos-93cc8aa1c0e4ba991f0503c609702e1c63a240c7.tar.xz
teachos-93cc8aa1c0e4ba991f0503c609702e1c63a240c7.zip
Add documentation to new components
Diffstat (limited to 'arch/x86_64/src')
-rw-r--r--arch/x86_64/src/kernel/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/src/kernel/main.cpp b/arch/x86_64/src/kernel/main.cpp
index f102a3a..f3518a8 100644
--- a/arch/x86_64/src/kernel/main.cpp
+++ b/arch/x86_64/src/kernel/main.cpp
@@ -51,7 +51,7 @@ namespace teachos::arch::kernel
memory::initialize_memory_management();
// stack_overflow_test(0);
- memory::heap::global_heap_allocator::register_heap_allocator_type(memory::heap::heap_allocator_type::LINKED_LIST);
+ memory::heap::global_heap_allocator::register_heap_allocator(memory::heap::heap_allocator_type::LINKED_LIST);
heap_test();
}