From 987b5adf2a703edafea6af210fd33f97ce5ddcc8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 28 Dec 2021 19:28:41 +0100 Subject: [PATCH] Kernel: Remove old comment about kmalloc() being Q&D :^) We've finally gotten kmalloc to a point where it feels decent enough to drop this comment. There's still a lot of room for improvement, and we'll continue working on it. --- Kernel/Heap/kmalloc.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Kernel/Heap/kmalloc.cpp b/Kernel/Heap/kmalloc.cpp index 71aacb04f1f..424939b9a4f 100644 --- a/Kernel/Heap/kmalloc.cpp +++ b/Kernel/Heap/kmalloc.cpp @@ -4,11 +4,6 @@ * SPDX-License-Identifier: BSD-2-Clause */ -/* - * Really really *really* Q&D malloc() and free() implementations - * just to get going. Don't ever let anyone see this shit. :^) - */ - #include #include #include