ladybird/Kernel/Heap
Andreas Kling d38b4e4665 Kernel: Add kfree_sized(), kfree() with a known allocation size
C++14 gave us sized operator delete, but we haven't been taking
advantage of it. Let's get to a point where it can help us by
adding kfree_sized(void*, size_t).
2021-07-11 14:14:51 +02:00
..
Heap.h Kernel: Only deallocate memory when alloc succeeds 2021-07-01 17:32:34 +02:00
kmalloc.cpp Kernel: Add kfree_sized(), kfree() with a known allocation size 2021-07-11 14:14:51 +02:00
kmalloc.h Kernel: Add kfree_sized(), kfree() with a known allocation size 2021-07-11 14:14:51 +02:00
SlabAllocator.cpp Kernel: Add slab allocator for 256 bytes 2021-06-26 11:08:52 +02:00
SlabAllocator.h AK+Kernel: Make fallible allocations compiler-agnostic 2021-06-24 17:35:49 +04:30