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:
parent
252e98761a
commit
9fccbde371
3 changed files with 37 additions and 38 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue