diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-17 22:22:22 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-18 07:23:26 +0200 |
commit | a9d1a86e6edc3fa3089a69f15d8ced52e8578d43 (patch) | |
tree | 35cb2ac07b77b17e251a7824296ecdb3d986bac2 /Kernel/FileSystem | |
parent | 9724d540b6407d49b9351d680b697effc1a0ea11 (diff) | |
download | serenity-a9d1a86e6edc3fa3089a69f15d8ced52e8578d43.zip |
CProcessStatisticsReader: Be consistent about terminology from the kernel down
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r-- | Kernel/FileSystem/ProcFS.cpp | 2 |
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()); |