summaryrefslogtreecommitdiff
path: root/Kernel/Process.cpp
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-06-03 03:21:04 -0700
committerAndreas Kling <kling@serenityos.org>2021-06-03 13:27:40 +0200
commit7e691f96e1e1d881ea698280868be75814e7f33d (patch)
treebc6970ea1d4536468e13f90043fe260592a0481e /Kernel/Process.cpp
parentce74fce0df94787b143866c03fe96757adf4c6ce (diff)
downloadserenity-7e691f96e1e1d881ea698280868be75814e7f33d.zip
Kernel: Switch ProcessGroup to IntrusiveList from InlineLinkedList
Diffstat (limited to 'Kernel/Process.cpp')
-rw-r--r--Kernel/Process.cpp2
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;