From 7c0540a22900a8366741205dead7f76ae4cfabcc Mon Sep 17 00:00:00 2001 From: Liav A Date: Fri, 24 Feb 2023 20:10:59 +0200 Subject: Everywhere: Move global Kernel pattern code to Kernel/Library directory This has KString, KBuffer, DoubleBuffer, KBufferBuilder, IOWindow, UserOrKernelBuffer and ScopedCritical classes being moved to the Kernel/Library subdirectory. Also, move the panic and assertions handling code to that directory. --- Kernel/Heap/kmalloc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Kernel/Heap') diff --git a/Kernel/Heap/kmalloc.cpp b/Kernel/Heap/kmalloc.cpp index 6330550570..5266a47b8f 100644 --- a/Kernel/Heap/kmalloc.cpp +++ b/Kernel/Heap/kmalloc.cpp @@ -11,12 +11,12 @@ #include #include #include +#include +#include #include #include -#include #include #include -#include #if ARCH(X86_64) || ARCH(AARCH64) static constexpr size_t CHUNK_SIZE = 64; -- cgit v1.2.3