summaryrefslogtreecommitdiff
path: root/Kernel/Memory
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-12-26 18:50:03 +0100
committerAndreas Kling <kling@serenityos.org>2021-12-26 21:22:59 +0100
commit3399b6c57f024665c041e756484f0af23fa53368 (patch)
treefddc42984e86673829425133d7d240ad73530d2d /Kernel/Memory
parent66d35f29366f197866c6d7b1caca6a6d025fd378 (diff)
downloadserenity-3399b6c57f024665c041e756484f0af23fa53368.zip
Kernel: Remove old SlabAllocator :^)
This is no longer useful since kmalloc() does automatic slab allocation without any of the limitations of the old SlabAllocator. :^)
Diffstat (limited to 'Kernel/Memory')
-rw-r--r--Kernel/Memory/Region.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Memory/Region.h b/Kernel/Memory/Region.h
index 1ad6e69e9b..7571456ca3 100644
--- a/Kernel/Memory/Region.h
+++ b/Kernel/Memory/Region.h
@@ -10,7 +10,6 @@
#include <AK/IntrusiveList.h>
#include <AK/Weakable.h>
#include <Kernel/Forward.h>
-#include <Kernel/Heap/SlabAllocator.h>
#include <Kernel/KString.h>
#include <Kernel/Memory/PageFaultResponse.h>
#include <Kernel/Memory/VirtualRangeAllocator.h>