mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
Kernel: Switch ProcessGroup to IntrusiveList from InlineLinkedList
This commit is contained in:
committed by
Andreas Kling
parent
ce74fce0df
commit
7e691f96e1
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user