Kernel: Include the 128 byte slab allocator in for_each_allocator

This commit is contained in:
Tom 2020-08-10 09:47:09 -06:00 committed by Andreas Kling
commit fcaa45f97b
Notes: sideshowbarker 2024-07-19 04:03:47 +09:00

View file

@ -123,6 +123,7 @@ void for_each_allocator(Callback callback)
callback(s_slab_allocator_16);
callback(s_slab_allocator_32);
callback(s_slab_allocator_64);
callback(s_slab_allocator_128);
}
void slab_alloc_init()