mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 11:57:35 +00:00
Kernel: Switch ProcessGroup to IntrusiveList from InlineLinkedList
This commit is contained in:
parent
ce74fce0df
commit
7e691f96e1
3 changed files with 11 additions and 13 deletions
|
@ -62,7 +62,7 @@ UNMAP_AFTER_INIT void Process::initialize()
|
|||
|
||||
next_pid.store(0, AK::MemoryOrder::memory_order_release);
|
||||
g_processes = new InlineLinkedList<Process>;
|
||||
g_process_groups = new InlineLinkedList<ProcessGroup>;
|
||||
g_process_groups = new ProcessGroup::List();
|
||||
g_hostname = new String("courage");
|
||||
g_hostname_lock = new Lock;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue