diff options
author | Andreas Kling <kling@serenityos.org> | 2021-12-28 19:28:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-28 21:02:38 +0100 |
commit | 987b5adf2a703edafea6af210fd33f97ce5ddcc8 (patch) | |
tree | f30532742d1df4ce76232f8071c26d1496164462 /Kernel/Heap/kmalloc.cpp | |
parent | 9dffcc9752d7e6a4337f3ef500683ace9f0047da (diff) | |
download | serenity-987b5adf2a703edafea6af210fd33f97ce5ddcc8.zip |
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.
Diffstat (limited to 'Kernel/Heap/kmalloc.cpp')
-rw-r--r-- | Kernel/Heap/kmalloc.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Kernel/Heap/kmalloc.cpp b/Kernel/Heap/kmalloc.cpp index 71aacb04f1..424939b9a4 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 <AK/Assertions.h> #include <AK/Types.h> #include <Kernel/Debug.h> |