diff options
author | Andreas Kling <kling@serenityos.org> | 2021-12-26 18:50:03 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-26 21:22:59 +0100 |
commit | 3399b6c57f024665c041e756484f0af23fa53368 (patch) | |
tree | fddc42984e86673829425133d7d240ad73530d2d /Kernel/Memory | |
parent | 66d35f29366f197866c6d7b1caca6a6d025fd378 (diff) | |
download | serenity-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.h | 1 |
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> |