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/WorkQueue.h | |
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/WorkQueue.h')
-rw-r--r-- | Kernel/WorkQueue.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/WorkQueue.h b/Kernel/WorkQueue.h index 1c86b04cf8..9f84424888 100644 --- a/Kernel/WorkQueue.h +++ b/Kernel/WorkQueue.h @@ -9,7 +9,6 @@ #include <AK/IntrusiveList.h> #include <Kernel/Forward.h> -#include <Kernel/Heap/SlabAllocator.h> #include <Kernel/Locking/SpinlockProtected.h> namespace Kernel { |