Kernel: Switch ProcessGroup to IntrusiveList from InlineLinkedList

This commit is contained in:
Brian Gianforcaro 2021-06-03 03:21:04 -07:00 committed by Andreas Kling
commit 7e691f96e1
Notes: sideshowbarker 2024-07-18 16:57:43 +09:00
3 changed files with 11 additions and 13 deletions

View file

@ -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;