mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 10:05:10 +00:00
Kernel: Remove old SlabAllocator :^)
This is no longer useful since kmalloc() does automatic slab allocation without any of the limitations of the old SlabAllocator. :^)
This commit is contained in:
parent
66d35f2936
commit
3399b6c57f
9 changed files with 0 additions and 245 deletions
|
@ -33,7 +33,6 @@
|
|||
#include <Kernel/Firmware/ACPI/Parser.h>
|
||||
#include <Kernel/Firmware/SysFSFirmware.h>
|
||||
#include <Kernel/Graphics/GraphicsManagement.h>
|
||||
#include <Kernel/Heap/SlabAllocator.h>
|
||||
#include <Kernel/Heap/kmalloc.h>
|
||||
#include <Kernel/Interrupts/APIC.h>
|
||||
#include <Kernel/Interrupts/InterruptManagement.h>
|
||||
|
@ -179,7 +178,6 @@ extern "C" [[noreturn]] UNMAP_AFTER_INIT void init(BootInfo const& boot_info)
|
|||
for (ctor_func_t* ctor = start_heap_ctors; ctor < end_heap_ctors; ctor++)
|
||||
(*ctor)();
|
||||
kmalloc_init();
|
||||
slab_alloc_init();
|
||||
|
||||
load_kernel_symbol_table();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue