1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +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:
Andreas Kling 2021-12-26 18:50:03 +01:00
parent 66d35f2936
commit 3399b6c57f
9 changed files with 0 additions and 245 deletions

View file

@ -14,7 +14,6 @@ elseif("${SERENITY_ARCH}" STREQUAL "x86_64")
endif()
set(KERNEL_HEAP_SOURCES
Heap/SlabAllocator.cpp
Heap/kmalloc.cpp
)
@ -446,7 +445,6 @@ if (ENABLE_KERNEL_COVERAGE_COLLECTION)
../Kernel/Devices/KCOVInstance.cpp
../Kernel/FileSystem/File.cpp
../Kernel/FileSystem/OpenFileDescription.cpp
../Kernel/Heap/SlabAllocator.cpp
../Kernel/init.cpp
../Kernel/SanCov.cpp
# GCC assumes that the caller saves registers for functions according