| 219 | void kmalloc_initialize() |
| 220 | { |
| 221 | auto& allocator = reinterpret_cast<BitmapAllocator*>(s_allocator_storage)[0]; |
| 222 | new (&allocator) BitmapAllocator(); |
| 223 | allocator.initialize_default(); |
| 224 | s_allocators[0] = &allocator; |
| 225 | } |
| 226 | |
| 227 | static void kmalloc_dump_info() |
| 228 | { |
| 229 | ASSERT(s_kmalloc_lock.current_processor_has_lock()); |
| 230 |
no test coverage detected