diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-06-03 03:21:04 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-03 13:27:40 +0200 |
commit | 7e691f96e1e1d881ea698280868be75814e7f33d (patch) | |
tree | bc6970ea1d4536468e13f90043fe260592a0481e /Kernel/Process.cpp | |
parent | ce74fce0df94787b143866c03fe96757adf4c6ce (diff) | |
download | serenity-7e691f96e1e1d881ea698280868be75814e7f33d.zip |
Kernel: Switch ProcessGroup to IntrusiveList from InlineLinkedList
Diffstat (limited to 'Kernel/Process.cpp')
-rw-r--r-- | Kernel/Process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index d55fbac717..8e1003e9ab 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -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; |