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
commit 9fccbde371
Notes: sideshowbarker 2024-07-18 12:43:29 +09:00
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);