summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2019-07-17 22:22:22 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-18 07:23:26 +0200
commita9d1a86e6edc3fa3089a69f15d8ced52e8578d43 (patch)
tree35cb2ac07b77b17e251a7824296ecdb3d986bac2 /Kernel/FileSystem
parent9724d540b6407d49b9351d680b697effc1a0ea11 (diff)
downloadserenity-a9d1a86e6edc3fa3089a69f15d8ced52e8578d43.zip
CProcessStatisticsReader: Be consistent about terminology from the kernel down
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r--Kernel/FileSystem/ProcFS.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/FileSystem/ProcFS.cpp b/Kernel/FileSystem/ProcFS.cpp
index 5fd6056b96..e5a340239e 100644
--- a/Kernel/FileSystem/ProcFS.cpp
+++ b/Kernel/FileSystem/ProcFS.cpp
@@ -585,6 +585,8 @@ ByteBuffer procfs$all(InodeIdentifier)
InterruptDisabler disabler;
auto processes = Process::all_processes();
JsonArray array;
+
+ // Keep this in sync with CProcessStatistics.
auto build_process = [&](const Process& process) {
JsonObject process_object;
process_object.set("pid", process.pid());