summaryrefslogtreecommitdiff
path: root/Kernel/Tasks/ProcessList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Tasks/ProcessList.cpp')
-rw-r--r--Kernel/Tasks/ProcessList.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Kernel/Tasks/ProcessList.cpp b/Kernel/Tasks/ProcessList.cpp
new file mode 100644
index 0000000000..6e5d765e68
--- /dev/null
+++ b/Kernel/Tasks/ProcessList.cpp
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#include <Kernel/Tasks/Process.h>
+
+namespace Kernel {
+
+ErrorOr<NonnullRefPtr<ProcessList>> ProcessList::create()
+{
+ return adopt_nonnull_ref_or_enomem(new (nothrow) ProcessList());
+}
+
+}