diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-08 13:42:24 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-08 14:24:54 +0200 |
commit | db14092d8feb3fc75c1fad20bb0c2234508f1236 (patch) | |
tree | e20b8db9f5ce6b064405f0aa8bf4849850e7866f /Kernel/Process.h | |
parent | 374972578da58ea6f53373f4fcb85200e565bf7a (diff) | |
download | serenity-db14092d8feb3fc75c1fad20bb0c2234508f1236.zip |
Kernel: Remove unused Process::all_pids()
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r-- | Kernel/Process.h | 1 |
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> |