mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
Kernel: Switch Process to InstrusiveList from InlineLinkedList
This commit is contained in:
parent
252e98761a
commit
9fccbde371
Notes:
sideshowbarker
2024-07-18 12:43:29 +09:00
Author: https://github.com/bgianfo
Commit: 9fccbde371
Pull-request: https://github.com/SerenityOS/serenity/pull/7859
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