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

Kernel: Switch Process to InstrusiveList from InlineLinkedList

This commit is contained in:
Brian Gianforcaro 2021-06-06 14:40:03 -07:00 committed by Andreas Kling
parent 252e98761a
commit 9fccbde371
3 changed files with 37 additions and 38 deletions

View file

@ -82,7 +82,7 @@ KResultOr<pid_t> Process::sys$fork(RegisterState& regs)
}
ScopedSpinLock processes_lock(g_processes_lock);
g_processes->prepend(child);
g_processes->prepend(*child);
}
PerformanceManager::add_process_created_event(*child);