1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Kernel: Slap a handful more things with UNMAP_AFTER_INIT

This commit is contained in:
Andreas Kling 2021-02-20 00:00:19 +01:00
parent 4f0be55770
commit cc0f5917d3
7 changed files with 15 additions and 15 deletions

View file

@ -2049,7 +2049,7 @@ void Processor::Processor::halt()
halt_this();
}
void Processor::deferred_call_pool_init()
UNMAP_AFTER_INIT void Processor::deferred_call_pool_init()
{
size_t pool_count = sizeof(m_deferred_call_pool) / sizeof(m_deferred_call_pool[0]);
for (size_t i = 0; i < pool_count; i++) {