1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:58:12 +00:00

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
parent 08ff25f4ef
commit fcaa45f97b

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()