summaryrefslogtreecommitdiff
path: root/Kernel/Process.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-08 13:42:24 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-08 14:24:54 +0200
commitdb14092d8feb3fc75c1fad20bb0c2234508f1236 (patch)
treee20b8db9f5ce6b064405f0aa8bf4849850e7866f /Kernel/Process.h
parent374972578da58ea6f53373f4fcb85200e565bf7a (diff)
downloadserenity-db14092d8feb3fc75c1fad20bb0c2234508f1236.zip
Kernel: Remove unused Process::all_pids()
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r--Kernel/Process.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 5e4d89c4e7..d8a2322414 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -183,7 +183,6 @@ public:
static void register_new(Process&);
~Process();
- static Vector<ProcessID> all_pids();
static NonnullRefPtrVector<Process> all_processes();
template<typename EntryFunction>